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






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

Syntax

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