This document is archived and information here might be outdated.  Recommended version.


IReclassOp.ReclassByRemap Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeoAnalyst > ESRI.ArcGIS.GeoAnalyst > Interfaces > IR > IReclassOp Interface > IReclassOp.ReclassByRemap Method
ArcGIS Developer Help

IReclassOp.ReclassByRemap Method

Reclassifies (or changes) the values of the input cells of a raster by using a remap that is built programmatically.

[Visual Basic .NET]
Public Function ReclassByRemap ( _
    ByVal GeoDataset As IGeoDataset, _
    ByVal Remap As IRemap, _
    ByVal retainMissingValues As Boolean _
) As IGeoDataset
[C#]
public IGeoDataset ReclassByRemap (
    IGeoDataset GeoDataset,
    IRemap Remap,
    bool retainMissingValues
);
[C++]
HRESULT ReclassByRemap(
  IGeoDataset* GeoDataset,
  IRemap* Remap,
  VARIANT_BOOL retainMissingValues
);
[C++]
Parameters
GeoDataset [in]

GeoDataset is a parameter of type IGeoDataset* Remap [in]
Remap is a parameter of type IRemap* retainMissingValues [in]
retainMissingValues is a parameter of type bool

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

GeoDataset

the input Raster, RasterDataset, RasterBand, or RasterDescriptor

Remap

the input remap object that supports IRemap interface.  If reclassifying number or string values use the NumberRemap or StringRemap objects respectively.

retainMissingValues

a Boolean specifying whether to keep missing values in the analysis.

If TRUE, values that have been omitted are given a NODATA value in output raster

If FALSE, values that have been omitted are retained and unchanged in the output raster.

See Also

IReclassOp Interface