System.TypInfo.TVmtMethodEntryTail

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVmtMethodEntryTail = packed record

C++

struct DECLSPEC_DRECORD TVmtMethodEntryTail
{
public:
    System::Byte Version;
    TCallConv CC;
    PTypeInfo *ResultType;
    System::Word ParOff;
    System::Byte ParamCount;
};

Properties

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

Description

TVmtMethodEntryTail is used internally to store method RTTI information.

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

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

See Also