TiSwitchRotary.PositionLabelAlignment

TiSwitchRotary See Also

Specifies the how the labels are aligned at the label positions.

type TiLabelAlignment = (ilaCenter, ilaJustified);

property PositionLabelAlignment : TiLabelAlignment;

Description

Set PositionLabelAlignment to specify how the labels are aligned at the label positions. For labels that are roughly all the same size, ilaCenter is the best alignment style to use and gives the most professional look. When the size of the labels are not close, ilaJustified gives the most professional look.

These are the possible values:

Value
Meaning
ilaCenter
Labels are aligned Center to the label point
ilaJustified
Labels are aligned Justified to the label point

Example

Delphi

iComponent.PositionLabelAlignment := ilaCenter;

C++ Builder

iComponent->PositionLabelAlignment = ilaCenter;

Contents | Index | Previous | Next