System.TypInfo.TVmtMethodEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVmtMethodEntry = packed record

C++

struct DECLSPEC_DRECORD TVmtMethodEntry
{
public:
    System::Word Len;
    void *CodeAddress;
    TSymbolName Name;
    TTypeInfoFieldAccessor __fastcall NameFld();
    PVmtMethodEntryTail __fastcall Tail();
};

Properties

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

Description

TVmtMethodEntry is used internally to store method RTTI information.

TVmtMethodEntry structures are automatically inserted by the Delphi compiler for all instance methods that are marked to emit extended RTTI.

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

See Also