System.TypInfo.TPropData
Delphi
  TPropData = packed record
    PropCount: Word;
    PropList: record end;
   {PropList: array[1..PropCount] of TPropInfo}
  end;
C++
struct DECLSPEC_DRECORD TPropData
{
private:
    struct DECLSPEC_DRECORD _TPropData__1
    {
    };
public:
    System::Word PropCount;
    _TPropData__1 PropList;
};
Propriétés
| Type | Visibilité | Source | Unité | Parent | 
|---|---|---|---|---|
| record struct | public | System.TypInfo.pas System.TypInfo.hpp | System.TypInfo | System.TypInfo | 
Description
TPropData est utilisé en interne pour stocker des informations RTTI de propriété.
Les structures TPropData sont automatiquement insérées par le compilateur Delphi pour toutes les propriétés qui sont marquées pour émettre des informations RTTI étendues.
N'utilisez pas directement TPropData. Utilisez à la place la classe TRttiProperty pour accéder aux informations de propriété associées à un type Delphi.