ESRI.ArcGIS.ADF.Web | |
Bounds Property | |
See Also |
ESRI.ArcGIS.ADF.Web.Display.Renderer Namespace > Generic ValueRange Class : Bounds Property |
Visual Basic (Declaration) | |
---|---|
Public Property Bounds As RangeBounds |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public RangeBounds Bounds {get; set;} |
This property is relevant when a feature's value exactly matches either the MinValue or MaxValue of the ValueRange. The values of RangeBounds and their effect on matches to the ValueRange are:
- None: the tested value must be between MinValue and MaxValue, and cannot equal either one.
- Lower: the tested value may equal the MinValue, or may be between MinValue and MaxValue.
- Upper: the tested value may equal the MaxValue, or may be between MinValue and MaxValue.
- All: the tested value must be between MinValue and MaxValue, or may equal either one.