IClassifyMinMax2 Interface

Provides access to members that control the classification methods that require a data range only.

Description

IClassifyMinMax2 can be used in place of IClassifyMinMax and IClassify to generate class breaks using the classification coclasses: DefinedInterval and EqualInterval. Use one call to IClassifyMinMax2.ClassifyMinMax instead of first setting IClassifyMinMax.Minimum, IClassifyMinMax.Maximum, and then calling IClassify.Classify.

Because IClassify is incompatible with some ArcObjects APIs including VB.NET and Java, the method described above is recommended when developing with these languages.

Members

Name Description
Method ClassifyMinMax Classifies a data range defined by a minimum and maximum value into the specified number of classes.

IClassifyMinMax2.ClassifyMinMax Method

Classifies a data range defined by a minimum and maximum value into the specified number of classes.

Public Sub ClassifyMinMax ( _
    ByVal min As Double, _
    ByVal max As Double, _
    ByRef numClasses As Integer _
)
public void ClassifyMinMax (
    double min,
    double max,
    ref int numClasses
);

Description

Use the ClassifyMinMax method to generate class breaks based upon the minimum and maximum values specified and the number of classes specified.

Use this method as an alternative to setting the IClassifyMinMax.Minimum and IClassifyMinMax.Maximum properties and then calling IClassify.Classify method.

Classes that implement IClassifyMinMax2

Classes Description
DefinedInterval Defines a defined interval classification method.
EqualInterval Defines an equal interval classification method.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.