com.esri.arcgis.system
Interface IClassifyMinMax

All Superinterfaces:
Serializable
All Known Implementing Classes:
DefinedInterval, EqualInterval

public interface IClassifyMinMax
extends Serializable

Provides access to members that control the classification methods that require only a minimum and maximum value to classify.

Description

The IClassifyMinMax interface provides properties for setting the Minimum and Maximum values to generate class breaks instead of setting data values using the IClassify::SetHistogramData method. After setting the Minimum and Maximum properties call the IClassify.Classify method to generate the class breaks.

Both the Minimum and Maximum properties must be set. Subsequently, using the IClassify::SetHistogramData method will override the Minimum and Maximum values.

Product Availability

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


Method Summary
 void setMaximum(double rhs1)
          The maximum value.
 void setMinimum(double rhs1)
          The minimum value.
 

Method Detail

setMinimum

void setMinimum(double rhs1)
                throws IOException,
                       AutomationException
The minimum value.

Description

Set the Minimum value in order to generate class breaks with the IClassify.Classify method. You will also need to set the Maximum value before generating the class breaks.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
rhs1 - The rhs1 (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setMaximum

void setMaximum(double rhs1)
                throws IOException,
                       AutomationException
The maximum value.

Description

Set the Maximum value in order to generate class breaks with the IClassify.Classify method. You also will need to set the Minimum value before generating the class breaks.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
rhs1 - The rhs1 (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.