TiSevenSegmentDisplay.LeadingStyle

TiSevenSegmentDisplay See Also

Determines the type of fill characters to use for justification of values.

type TiLeadingStyle = (ilsNone, ilsZeros, ilsSpaces);

property
LeadingStyle : TiLeadingStyle;

Description

Use LeadingStyle to specify the type of fill characters to use for justification of values.

These are the possible values:

Value
Meaning
ilsNone
Value is left justified.
ilsZeros
Value is Right Justified with leading 0's.
ilsSpaces
Value is Right Justified with leading spaces.

Example

Delphi

iComponent.LeadingStyle := ilsSpaces;

C++ Builder

iComponent->LeadingStyle = ilsSpaces;

Contents | Index | Previous | Next