Performs a conditional if/else evaluation.
[Visual Basic .NET] Public Function Con ( _ ByVal ConditionalRaster As IGeoDataset, _ ByVal TrueRaster As IGeoDataset, _ [ByRef FalseRaster As Object] _ ) As IGeoDataset
[C#] public IGeoDataset Con ( IGeoDataset ConditionalRaster, IGeoDataset TrueRaster, ref object FalseRaster );
[C#]
Optional Values
FalseRaster To indicate that this parameter is undefined, first define a variable object Missing = Type.Missing; then pass this in as ref Missing.
[C++]
HRESULT Con(
IGeoDataset* ConditionalRaster,
IGeoDataset* TrueRaster,
VARIANT* FalseRaster,
IGeoDataset** Con
);
[C++]Parameters
ConditionalRaster [in]ConditionalRaster is a parameter of type IGeoDataset
TrueRaster [in]TrueRaster is a parameter of type IGeoDataset
FalseRaster [optional] FalseRaster is a parameter of type VARIANTTo indicate this parameter is undefined pass a reference to a VARIANT with type VT_ERROR and scode value of DISP_E_PARAMNOTFOUND.
Con [out, retval]Con is a parameter of type IGeoDataset
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.
Remarks
conditionalRaster | an input Raster, RasterDataset, RasterBand, or RasterDescriptor. The values should be comprised of “1”’s and “0”’s with a “1” representing True condition and a “0” a False condition |
trueRaster | the value that will be used as the output value if the conditionalRaster is True |
[falseRaster] | the value that will be used as the output value if the conditionalRaster is False. If no falseRaster is specified, all False values (“0”’s) in the conditionalRaster will be assigned NoData |
- The method returns a reference to a Raster object.
- Read the Working with ArcGIS Spatial Analyst objects technical document for general information on implementing Spatial Analyst operations.