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 LabelValueRange
Dim value As RangeBounds
instance.Bounds = value
value = instance.Bounds |
Example
For a larger example of using MinValue, see the
ValueMapLabelRenderer() constructor .
Visual Basic | Copy Code |
---|
Dim valueRange As New LabelValueRange
valueRange.MinValue = 1
valueRange.MaxValue = 100
valueRange.Bounds = RangeBounds.Upper |
C# | Copy Code |
---|
LabelValueRange valueRange = new LabelValueRange();
valueRange.MinValue = 1;
valueRange.MaxValue = 100;
valueRange.Bounds = RangeBounds.Upper; |
Remarks
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