Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomTrackBarProperties.TextOrientation Property

Specifies the orientation of the text representing tick marks.

#Declaration

Delphi
property TextOrientation: TcxTrackBarTextOrientation read; write; default tbtoHorizontal;

#Property Value

Type Default
TcxTrackBarTextOrientation tbtoHorizontal

#Remarks

This property is in effect only if the TickType property is set to display text labels within tick marks. The TextOrientation property allows you to change the orientation of text within the labels. You can use this, for instance, to avoid overlapping.

Value Meaning Example
tbtoHorizontal The text is horizontally oriented within tick labels.
tbtoVertical The text is vertically oriented within tick labels.

Note

Use the dxUseAntialiasingForRotatedText global constant to control if the ClearType antialiasing is applied to a rotated text in your application. You can also change the orientation of the track bar itself. Use the Orientation property for this purpose.

The default value of the TextOrientation property is tbtoHorizontal.

See Also