ArcObjects Library Reference (Carto)  

IRasterClassifyUIProperties.ClassificationMethod Property

Classification method.

[Visual Basic .NET]
Public Property ClassificationMethod As UID
[C#]
public UID ClassificationMethod {get; set;}
[C++]
HRESULT get_ClassificationMethod(
  IUID** ppClsid
);
[C++]
HRESULT putref_ClassificationMethod(
  IUID* ppClsid
);
[C++]

Parameters

ppClsid [out, retval]

  ppClsid is a parameter of type IUID

ppClsid [in]

  ppClsid is a parameter of type IUID

Product Availability

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

Description

The ClassificationMethod controls the classification method used to divide the dataset into classes. The default is a natural break classification. This must be specified as a ClassID of the classification coclass. This can be obtained by QI’ing for the IClassify interface on any of the coclasses that support IClassify, then passing the ClassID property to the ClassificationMethod property of the renderer.

If the ClassificationMethod uses standard deviations, the DeviationInterval property determines the number of standard deviations that separate each class.

See Also

IRasterClassifyUIProperties Interface