System.TypInfo.TIntfMethodParamTail
Delphi
TIntfMethodParamTail = packed record
ParamType: PPTypeInfo;
AttrData: TAttrData; // not currently entered
end;
C++
struct DECLSPEC_DRECORD TIntfMethodParamTail
{
public:
PTypeInfo *ParamType;
TAttrData AttrData;
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | System.TypInfo.pas System.TypInfo.hpp |
System.TypInfo | System.TypInfo |
Description
TIntfMethodParamTail is used internally to store method parameter RTTI information.
TIntfMethodParamTail structures are automatically inserted by the Delphi compiler for all interface methods that are marked to emit extended RTTI.
Do not use TIntfMethodParamTail directly; instead, use the TRttiParameter class to gain access to parameter information associated with a Delphi interface.