System.TypInfo.TIntfMethodParam

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIntfMethodParam = packed record

C++

struct DECLSPEC_DRECORD TIntfMethodParam
{
public:
    System::Byte Flags;
    TSymbolName ParamName;
    TTypeInfoFieldAccessor __fastcall ParamNameFld();
};

Properties

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

Description

TIntfMethodParam is used internally to store method parameter RTTI information.

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

Do not use TIntfMethodParam directly; instead, use the TRttiParameter class to gain access to parameter information associated with a Delphi interface.

See Also