Skip to main content
A newer version of this page is available. .
Tab

TrackBarProperties.AllowRangeSelection Property

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.v19.2.dll

Declaration

[DefaultValue(false)]
public bool AllowRangeSelection { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the editor is in the range selection mode; otherwise, false.

Remarks

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