System.TypInfo.BooleanIdents

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

BooleanIdents: array [Boolean] of string = ('False', 'True');

C++

extern DELPHI_PACKAGE System_Typinfo__4 BooleanIdents;

Properties

Type Visibility Source Unit Parent
variable public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

An array of string representations of true and false.

The GetEnumName routine is part of Delphi's RTTI (Run Time Type Information). It returns a string representation of an enumerated type value. If that type is true or false, BooleanIdents is used internally.

See Also