System.TypInfo.TIntfMethodTable

From RAD Studio API Documentation
Jump to: navigation, search

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;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

PIntfMethodTable is used internally to store method RTTI information.

TIntfMethodTable structures are automatically inserted by the Delphi compiler for all interfaces that are marked to emit extended RTTI.

Do not use TIntfMethodTable directly; instead, use the TRttiMethod class to gain access to method information associated with a Delphi interface.

See Also