System.TypInfo.TRecordTypeField

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TRecordTypeField = packed record
    Field: TManagedField;
    Flags: Byte;
    Name: TSymbolName;
    function NameFld: TTypeInfoFieldAccessor; inline;
   {AttrData: TAttrData;}
    function AttrData: PAttrData; inline;
  end;

C++

struct DECLSPEC_DRECORD TRecordTypeField
{
public:
    TManagedField Field;
    System::Byte Flags;
    TSymbolName Name;
    TTypeInfoFieldAccessor __fastcall NameFld();
    PAttrData __fastcall AttrData();
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

TRecordTypeField is used internally to store record field RTTI information.

TRecordTypeField structures are automatically inserted by the Delphi compiler for all fields in a record that is marked to emit extended RTTI.

Do not use TRecordTypeField directly; instead, use the TRttiField class to gain access to field information associated with a Delphi record.

See Also