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


IRemapFilter.AddClass Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (DataSourcesRaster)  

IRemapFilter.AddClass Method

Adds a remap class that remaps values in [minvalue,maxvalue) to a give new value.

[Visual Basic .NET]
Public Sub AddClass ( _
    ByVal minvalue As Double, _
    ByVal maxvalue As Double, _
    ByVal newvalue As Double _
)
[C#]
public void AddClass (
    double minvalue,
    double maxvalue,
    double newvalue
);
[C++]
HRESULT AddClass(
  double minvalue,
  double maxvalue,
  double newvalue
);
[C++]

Parameters minvalue [in] minvalue is a parameter of type double maxvalue [in] maxvalue is a parameter of type double newvalue [in] newvalue is a parameter of type double

Product Availability

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

See Also

IRemapFilter Interface