System.TypInfo.PVmtMethodTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PVmtMethodTable = ^TVmtMethodTable;

C++

typedef TVmtMethodTable *PVmtMethodTable;

Properties

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

Description

PVmtMethodTable is used internally to store method RTTI information.

PVmtMethodTable is a pointer to a TVmtMethodTable record.

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

Do not use TVmtMethodTable directly; instead, use the TRttiMEthod class to gain access to method information associated with a Delphi class.

See Also