System.TypInfo.TVmtMethodTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVmtMethodTable = packed record

C++

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

Properties

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

Description

TVmtMethodTable is used internally to store method RTTI information.

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