ESRI.ArcGIS.ADF.Web
Bounds Property
See Also 
ESRI.ArcGIS.ADF.Web.Display.Renderer Namespace > Generic ValueRange Class : Bounds Property




The setting for whether a match occurs for the ValueRange if the value equals the MinValue or MaxValue.

Syntax

Visual Basic (Declaration) 
Public Property Bounds As RangeBounds
Visual Basic (Usage)Copy Code
Dim instance As ValueRange(Of T)
Dim value As RangeBounds
 
instance.Bounds = value
 
value = instance.Bounds
C# 
public RangeBounds Bounds {get; set;}

Remarks

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.

See Also

© 2010 All Rights Reserved.