System.TypInfo.TVmtMethodExEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TVmtMethodExEntry = packed record
    Entry: PVmtMethodEntry;
    Flags: Word;
    VirtualIndex: Smallint; // signed word
  end;

C++

struct DECLSPEC_DRECORD TVmtMethodExEntry
{
public:
    TVmtMethodEntry *Entry;
    System::Word Flags;
    short VirtualIndex;
};

Properties

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

Description

TVmtMethodExEntry is used internally to store method RTTI information.

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

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

See Also