aspnet-devexpress-dot-web-dot-trackbarproperties-187289d9.md
Gets or sets a value that specifies whether or not an end-user can select a range of track bar values.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool AllowRangeSelection { get; set; }
<DefaultValue(False)>
Public Property AllowRangeSelection As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if the editor is in the range selection mode; otherwise, false.
|
The AllowRangeSelection property places the editor in the range selection mode. In this mode, the second drag handle appears, which allows an end-user to select not only a single value, but a range of values. The ASPxTrackBar.PositionStart and ASPxTrackBar.PositionEnd properties can be used to get or set the selected range.
Note
The AllowRangeSelection property synchronizes its value with the editor’s ASPxTrackBar.AllowRangeSelection property.
See Also