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

ASPxClientTrackBarPositionChangingEventArgs.currentPosition Property

Gets the current drag handle position.

Declaration

currentPosition: number

Property Value

Type Description
number

A Decimal value that is the drag handle position.

Remarks

Use the currentPosition property to obtain the current drag handle position. To get the position where the handle is being moved use the ASPxClientTrackBarPositionChangingEventArgs.newPosition property.

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 ASPxClientTrackBarPositionChangingEventArgs.currentPositionStart and ASPxClientTrackBarPositionChangingEventArgs.currentPositionEnd properties to access the current handles’ positions. To access the new positions use the ASPxClientTrackBarPositionChangingEventArgs.newPositionStart and ASPxClientTrackBarPositionChangingEventArgs.newPositionEnd properties.

See Also