System.TypInfo.TVmtMethodExEntry

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TVmtMethodExEntry = packed record
    Entry: PVmtMethodEntry;
    Flags: Word;
    VirtualIndex: Smallint; // signed word
  end;

C++

struct DECLSPEC_DRECORD TVmtMethodExEntry
{
public:
    TVmtMethodEntry *Entry;
    System::Word Flags;
    short VirtualIndex;
};

Eigenschaften

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

Beschreibung

TVmtMethodExEntry wird intern zum Speichern von Methoden-RTTI-Informationen verwendet.

TVmtMethodExEntry-Strukturen werden automatisch vom Delphi-Compiler für alle Instanzmethoden eingefügt, die für die Ausgabe von erweiterten RTTI-Informationen gekennzeichnet sind.

Verwenden Sie TVmtMethodExEntry nicht direkt, sondern greifen Sie mit der Klasse TRttiMethod auf die einer Delphi-Klasse zugeordneten Methodeninformationen zu.

Siehe auch