TiAngularGauge.Label1AlignHorizontal

TiAngularGauge See Also

Controls the horizontal alignment of Label1.

type TiAlignmentHorizontal = (iahCenter, iahLeft, iahRight);

property Label1AlignHorizontal : TiAlignmentHorizontal;

Description

Set Label1AlignHorizontal to specify how Label1 is aligned horizontally. Label1 is still offset by the Label1OffsetX property no matter what the value of Label1AlignHorizontal.

These are the possible values:

Value
Meaning
iahCenter
Label1 is centered horizontally relative to the arc center.
iahLeft
Label1 is left justified in the control: Begins at the left edge of the control.
iahRight
Label1 is right justified in the control: Ends at the right edge of the control.

Example

Delphi

iComponent.Label1AlignHorizontal := iahCenter;

C++ Builder

iComponent->Label1AlignHorizontal = iahCenter;

Contents | Index | Previous | Next