Intersoft ClientUI Documentation
SelectionEnd Property
See Also  Send Feedback
Intersoft.Client.UI.Aqua.UXInput Namespace > UXRangeSliderBar Class : SelectionEnd Property






Gets or sets the largest value of a specified selection for a slider bar.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Common Properties")>
Public Property SelectionEnd As Double
Visual Basic (Usage)Copy Code
Dim instance As UXRangeSliderBar
Dim value As Double
 
instance.SelectionEnd = value
 
value = instance.SelectionEnd
C# 
[CategoryAttribute("Common Properties")]
public double SelectionEnd {get; set;}
Delphi 
public read-write property SelectionEnd: Double; 
JScript 
CategoryAttribute("Common Properties")
public function get,set SelectionEnd : double
Managed Extensions for C++ 
[CategoryAttribute("Common Properties")]
public: __property double get_SelectionEnd();
public: __property void set_SelectionEnd( 
   double value
);
C++/CLI 
[CategoryAttribute("Common Properties")]
public:
property double SelectionEnd {
   double get();
   void set (    double value);
}

Remarks

Unlike UXSliderBarUXRangeSliderBar uses two selection properties, SelectionStart and SelectionEnd, to indicate the selected range of values. By default, both properties are set to NaN, which means the range selection starts from the lowest possible value specified in Minimum property and ends at the highest possible value specified in Maximum property.

The following example shows how to define a simple UXRangeSliderBar in XAML.

View Copy Code
<Intersoft:UXRangeSliderBar HandlesVisibility="Visible" TickPlacement="BottomRight" Minimum="10" Maximum="50" LargeChange="5" SmallChange="1" SelectionStart="20" SelectionEnd="40"/>
        

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

© 2012 All Rights Reserved.