TiAngularLogGauge.Label1AlignVertical

TiAngularLogGauge

Controls the vertical alignment of Label1.

type TiAlignmentVertical = (iavCenter, iavTop, iavBottom);

property Label1AlignVertical : TiAlignmentVertical;

Description

Set Label1AlignVertical to specify how Label1 is aligned vertically. Label1 is still offset by the Label1OffsetY property no matter what the value of Label1AlignVertical.

These are the possible values:

Value
Meaning
iavCenter
Label1 is centered vertically relative to the arc center.
iavTop
Label1 is top-justified in the control: Begins at the top edge of the control.
iavBottom
Label1 is bottom-justified in the control: Ends at the bottom edge of the control.

Example

Delphi

iComponent.Label1AlignVertical := iavCenter;

C++ Builder

iComponent->Label1AlignVertical = iavCenter;

Contents | Index | Previous | Next