ESRI.ArcGIS.ADF.IMS
Bounds Property
See Also  Example Send Feedback
ESRI.ArcGIS.ADF.IMS.Display.Renderer Namespace > ValueRange Class : Bounds Property




Gets or sets the equality for the bounds.

Syntax

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

Example

For a larger example of using MinValue, see ValueMapRenderer .
Visual BasicCopy Code
Dim valueRange As New ValueRange
valueRange.MinValue = 1
valueRange.MaxValue = 100
valueRange.Bounds = RangeBounds.Upper
C#Copy Code
ValueRange valueRange = new ValueRange(); 
valueRange.MinValue = 1; 
valueRange.MaxValue = 100; 
valueRange.Bounds = RangeBounds.Upper;

Remarks

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.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2011 All Rights Reserved.