System.TypInfo.PIntfMethodTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PIntfMethodTable = ^TIntfMethodTable;

C++

typedef TIntfMethodTable *PIntfMethodTable;

Properties

Type Visibility Source Unit Parent
pointer
typedef
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

PIntfMethodTable is used internally to store method RTTI information.

PIntfMethodTable is a pointer to a TIntfMethodTable record.

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

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

See Also