TiIntegerOutput.FormatStyle

TiIntegerOutput

Specifies the Formatting Style of the value displayed.

type TiIntegerFormatStyle = (iifsInteger, iifsHex, iifsBinary, iifsOctal);

property FormatStyle: TiIntegerFormatStyle;

Description

Set FormatStyle to specify the style of the value displayed and to specify how input is interpreted from your application user.

These are the possible values:

Value
Meaning
iifsInteger
Displayed text is formatted as an Integer value. Values entered are interpreted as Integer values.
iifsHex
Displayed text is formatted as Hexadecimal. Values entered are interpreted as Hexadecimal values.
iifsBinary
Displayed text is formatted as Binary. Values entered are interpreted as Binary values.
iifsOctal
Displayed text is formatted as Octal. Values entered are interpreted as Octal values.

Example

Delphi

iComponent.FormatStyle := iifsHex;

C++ Builder

iComponent->FormatStyle = iifsHex;

Contents | Index | Previous | Next