Skip to main content

ASPxClientTrackBarPositionChangingEventArgs.currentPositionStart Property

Gets the current main drag handle position.

Declaration

currentPositionStart: number

Property Value

Type Description
number

The drag handle position.

Remarks

When the TrackBarProperties.AllowRangeSelection is set to true a track bar displays two drag handles to support the value range selection. In this case, use the currentPositionStart property to obtain the current main drag handle position. To get the position where the drag handle is being moved, use the ASPxClientTrackBarPositionChangingEventArgs.newPositionStart property. You can get the current and new positions of secondary drag handle using the ASPxClientTrackBarPositionChangingEventArgs.currentPositionEnd and ASPxClientTrackBarPositionChangingEventArgs.newPositionEnd properties respectively.

If the AllowRangeSelection property is set to false, you can access the position of the single drag handle using the ASPxClientTrackBarPositionChangingEventArgs.currentPosition and ASPxClientTrackBarPositionChangingEventArgs.newPosition properties.

See Also