System.TypInfo.TPropInfoEx

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TPropInfoEx = packed record
    Flags: Byte;
    Info: PPropInfo;
    AttrData: TAttrData
  end;

C++

struct DECLSPEC_DRECORD TPropInfoEx
{
public:
    System::Byte Flags;
    TPropInfo *Info;
    TAttrData AttrData;
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Beschreibung

TPropInfoEx wird intern zum Speichern von Eigenschafts-RTTI-Informationen verwendet.

TPropInfoEx-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 TPropInfoEx nicht direkt, sondern greifen Sie mit der Klasse TRttiProperty auf die einem Delphi-Typ zugeordneten Eigenschaftsinformationen zu.

Siehe auch