System.TypInfo.TManagedField

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TManagedField = packed record
    TypeRef: PPTypeInfo;
    FldOffset: NativeInt;
  end;

C++

struct DECLSPEC_DRECORD TManagedField
{
public:
    PTypeInfo *TypeRef;
    NativeInt FldOffset;
};

Properties

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

Description

TManagedField is used internally to store managed field RTTI information.

TManagedField structures are automatically inserted by the Delphi compiler for all managed fields that are marked to emit extended RTTI.

Do not use TManagedField directly; instead, use the TRttiManagedField class to gain access to field information associated with a Delphi type.

See Also