ESRI.ArcGIS.ADF.IMS | |
Bounds Property | |
See Also Example |
ESRI.ArcGIS.ADF.IMS.Display.Renderer Namespace > LabelValueRange Class : Bounds Property |
Visual Basic (Declaration) | |
---|---|
Public Property Bounds As RangeBounds |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public RangeBounds Bounds {get; set;} |
For a larger example of using MinValue, see the
ValueMapLabelRenderer() constructor .
Visual Basic | Copy Code |
---|---|
Dim valueRange As New LabelValueRange |
C# | Copy Code |
---|---|
LabelValueRange valueRange = new LabelValueRange(); |
Determines whether values exactly equal to the MinValue or MaxValue are rendered by this LabelValueRange. Either or both of the values can be included in the rendering.
This property is provided so that overlapping values can be specified for ranges. For example, one range might be "1-100" and a second "100-200". If a value of 100 is found, this property will determine which class the feature will be assigned to. If Bounds is set to Lower for both classes, the feature will be assigned to the second class, since the lower bound of that class has been included in the range.
The default value is Lower.