System.TypInfo.TVmtMethodParam

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVmtMethodParam = packed record

C++

struct DECLSPEC_DRECORD TVmtMethodParam
{
public:
    System::Byte Flags;
    PTypeInfo *ParamType;
    System::Byte ParOff;
    TSymbolName Name;
    TTypeInfoFieldAccessor __fastcall NameFld();
    PAttrData __fastcall AttrData();
};

Properties

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

Description

TVmtMethodParam is used internally to store method parameter RTTI information.

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

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

See Also