Description
Gets or sets a value indicating whether to maintain the source raster's format after the filter is applied. When true, the source raster's format is maintained after swizzling.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property MaintainRasterFormat() As Boolean
|
[C#] |
---|
public bool MaintainRasterFormat {get; set;}
|
[Managed C++] |
---|
public: __property bool get_MaintainRasterFormat(); public: __property void set_MaintainRasterFormat(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_MaintainRasterFormat(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_MaintainRasterFormat(
VARIANT_BOOL MaintainRasterFormat
);
|
[Java] |
---|
public bool getMaintainRasterFormat();
public void setMaintainRasterFormat(
bool
);
|
[Python - STK API] |
---|
@property
def MaintainRasterFormat(self) -> bool:
@MaintainRasterFormat.setter
def MaintainRasterFormat(self, MaintainRasterFormat:bool) -> None:
|
See Also