System.Rtti.TRttiStringKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRttiStringKind = (skShortString, skAnsiString, skWideString, skUnicodeString);

C++

enum DECLSPEC_DENUM TRttiStringKind : unsigned char { skShortString, skAnsiString, skWideString, skUnicodeString };

Properties

Type Visibility Source Unit Parent
enum public
System.Rtti.pas
System.Rtti.hpp
System.Rtti System.Rtti

Description

Enumerates the available string types in the Delphi language.

TRttiStringKind is an enumeration type that lists all the string types available in the Delphi language. The values of TRttiStringKind and their meanings are listed in the following table.



Value Meaning

skShortString

Identifies a ShortString type.

skAnsiString

Identifies an AnsiString type.

skWideString

Identifies a WideString type.

skUnicodeString

Identifies a UnicodeString type. The String type is an alias for UnicodeString.



See Also