System.TypInfo.TIntfMethodTable
Aus RAD Studio API Documentation
Delphi
TIntfMethodTable = packed record Count: Word; // methods in this interface RttiCount: Word; // =Count, or $FFFF if no further data {Entry: array[1..Count] of TIntfMethodEntry; AttrData: TAttrData;} end;
C++
struct DECLSPEC_DRECORD TIntfMethodTable { public: System::Word Count; System::Word RttiCount; };
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
|---|---|---|---|---|
record struct |
public | System.TypInfo.pas System.TypInfo.hpp |
System.TypInfo | System.TypInfo |
Beschreibung
PIntfMethodTable wird intern zum Speichern von Methoden-RTTI-Informationen verwendet.
TIntfMethodTable-Strukturen werden automatisch vom Delphi-Compiler für alle Interfaces eingefügt, die für die Ausgabe von erweiterten RTTI-Informationen gekennzeichnet sind.
Verwenden Sie TIntfMethodTable nicht direkt, sondern greifen Sie mit der Klasse TRttiMethod auf die einem Delphi-Interface zugeordneten Methodeninformationen zu.