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


IReclassOp.Lookup 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.Lookup Method
ArcGIS Developer Help

IReclassOp.Lookup Method

Creates a new raster by looking up values found in another field in the table of the input raster.

[Visual Basic .NET]
Public Function Lookup ( _
    ByVal GeoDataset As IGeoDataset, _
    ByVal FieldName As String _
) As IGeoDataset
[C#]
public IGeoDataset Lookup (
    IGeoDataset GeoDataset,
    string FieldName
);
[C++]
HRESULT Lookup(
  IGeoDataset* GeoDataset,
  BSTR FieldName
);
[C++]
Parameters
GeoDataset [in]

GeoDataset is a parameter of type IGeoDataset* FieldName [in]
FieldName is a parameter of type BSTR

Product Availability

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

Remarks

GeoDataset

the input Raster, RasterDataset, RasterBand, or RasterDescriptor

FieldName

the name of the field that contains the values upon which the input geodataset will be classified.

See Also

IReclassOp Interface