Intersoft ClientUI Documentation
IsDragRangeEnabled Property



Gets or sets whether the selection range can be dragged.
Syntax
<CategoryAttribute("Common Properties")>
Public Property IsDragRangeEnabled As Boolean
Dim instance As UXRangeSliderBar
Dim value As Boolean
 
instance.IsDragRangeEnabled = value
 
value = instance.IsDragRangeEnabled
[CategoryAttribute("Common Properties")]
public bool IsDragRangeEnabled {get; set;}
[CategoryAttribute("Common Properties")]
public:
property bool IsDragRangeEnabled {
   bool get();
   void set (    bool value);
}
Remarks

In UXRangeSliderBar, the area between the two UXThumb is the selected range of values, indicated by a blue track. By default this track is divided into two, middle increase and middle decrease button area. You can click on these areas to invoke the DecreaseLarge or IncreaseLarge commands.

Alternatively, you can enable another mode in UXRangeSliderBar using IsDragRangeEnabled property, which enables users to move the range selection track. In this mode, the DecreaseLarge and IncreaseLarge commands will not be invoked. You can drag the range selection area and both values of SelectionStart and SelectionEnd properties will be changed.

View
Copy Code
<Intersoft:UXRangeSliderBar TickPlacement="BottomRight" HandlesVisibility="Visible" SelectionStart="4" SelectionEnd="7" IsDragRangeEnabled="True" />
            
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXRangeSliderBar Class
UXRangeSliderBar Members
UXRangeSliderBar
Commanding Overview

Send Feedback