TiLedBar.SegmentDirection

TiLedBar See Also

Specifies the direction segments illuminate as the Position property increases.

type TiDirection = (idUp, idDown, idRight, idLeft);

property SegmentDirection : TiDirection;

Description

Set SegmentDirection to specify the direction segments illuminate as the Position property increases.

These are the possible values:

Value
Meaning
idUp
Segments illuminate from bottom to top as Position increase.
idDown
Segments illuminate from top to bottom as Position increase.
idRight
Segments illuminate from left to right as Position increase.
idLeft
Segments illuminate from right to left as Position increase.

Example

Delphi

iComponent.SegmentDirection := idUp;

C++ Builder

iComponent->SegmentDirection = idUp;

Contents | Index | Previous | Next