System.TypInfo.TIntfMethodEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIntfMethodEntry = packed record

C++

struct DECLSPEC_DRECORD TIntfMethodEntry
{
public:
    TSymbolName Name;
    TTypeInfoFieldAccessor __fastcall NameFld();
    PIntfMethodEntryTail __fastcall Tail();
};

Properties

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

Description

TIntfMethodEntry is used internally to store method RTTI information.

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

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

See Also