TcxCustomTrackBarProperties.ThumbStep Property
Specifies the manner in which the track bar’s thumb is moved when the track bar is clicked.
Declaration
property ThumbStep: TcxTrackBarThumbStep read; write; default cxtsNormal;
Property Value
Type | Default |
---|---|
TcxTrackBarThumbStep | cxtsNormal |
Remarks
End-users can change the position of the track bar’s thumb by clicking it at the position in which they want the track bar’s thumb to be moved to. Use the ThumbStep property to specify the manner in which the thumb will be moved. The following values are available for this property.
Value | Meaning |
---|---|
cxtsNormal | The thumb moves by PageSize to the specified position. |
cxtsJump | The thumb moves (jumps) exactly to the specified position (actually, the nearest tick mark to this position). End-users can click the track bar and then drag the thumb while holding down the left mouse button to continue moving it until the button is released. |
The default value of the ThumbStep property is cxtsNormal.
See Also