System.TypInfo.TManagedField

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

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

C++

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

Propriétés

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

Description

TManagedField est utilisé en interne pour stocker des informations RTTI de champ managé.

Les structures TManagedField sont automatiquement insérées par le compilateur Delphi pour tous les champs managés qui sont marqués pour émettre des informations RTTI étendues.

N'utilisez pas directement TManagedField. Utilisez à la place la classe TRttiManagedField pour accéder aux informations de champ associées à un type Delphi.

Voir aussi