ESRI.ArcGIS.ADF.IMS | |
Bounds Property | |
See Also Example |
ESRI.ArcGIS.ADF.IMS.Display.Renderer Namespace > ValueRange 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
ValueMapRenderer .
Visual Basic | Copy Code |
---|---|
Dim valueRange As New ValueRange |
C# | Copy Code |
---|---|
ValueRange valueRange = new ValueRange(); |
Determines whether values exactly equal to the MinValue or MaxValue are rendered by this ValueRange. 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.