System.TypInfo.TPropDataEx
Delphi
TPropDataEx = packed record
PropCount: Word;
PropList: record end;
{PropList: array[1..PropCount] of TPropInfoEx}
end;
C++
struct DECLSPEC_DRECORD TPropDataEx
{
private:
struct DECLSPEC_DRECORD _TPropDataEx__1
{
};
public:
System::Word PropCount;
_TPropDataEx__1 PropList;
};
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
record struct |
public | System.TypInfo.pas System.TypInfo.hpp |
System.TypInfo | System.TypInfo |
Beschreibung
TPropDataEx wird intern zum Speichern von Eigenschafts-RTTI-Informationen verwendet.
TPropDataEx-Strukturen werden automatisch vom Delphi-Compiler für alle Eigenschaften eingefügt, die für die Ausgabe von erweiterten RTTI-Informationen gekennzeichnet sind.
Verwenden Sie TPropDataEx nicht direkt, sondern greifen Sie mit der Klasse TRttiProperty auf die einem Delphi-Typ zugeordneten Eigenschaftsinformationen zu.