ArcObjects Library Reference (Carto)  

IClassBreaksRenderer.MinimumBreak Property

Minimum break, i.e. the lower bound of the first class.

[Visual Basic .NET]
Public Property MinimumBreak As Double
[C#]
public double MinimumBreak {get; set;}
[C++]
HRESULT get_MinimumBreak(
  double* Value
);
[C++]
HRESULT put_MinimumBreak(
  double Value
);
[C++]

Parameters

Value [out, retval]   Value is a parameter of type double Value [in]   Value is a parameter of type double

Product Availability

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

Remarks

Represents the minimum value symbolized by the renderer. Values less than the MinimumBreak will not be drawn by the renderer, thererfore is is common to set this property to the minimum value in the dataset being symbolized.

If you change the data being symbolized, you may need to reset the MinimumBreak if the minimum value in the data is affected.

MinimumBreak does NOT equal Break(0). Break(0) is the highest value in the first class, while MinimumBreak is functionally the lowest value in the first class.

See Also

IClassBreaksRenderer Interface