System.TypInfo.TVmtMethodTable

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TVmtMethodTable = packed record
    Count: Word;
   {Entry: array[1..Count] of TVmtMethodEntry;}
   {ExCount: Word;}
   {ExEntry: array[1..ExCount] of TVmtMethodExEntry;}
   {VirtCount: Word;}
  end;

C++

struct DECLSPEC_DRECORD TVmtMethodTable
{
public:
    System::Word Count;
};

Eigenschaften

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

Beschreibung

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

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

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

Siehe auch