System.TypInfo.TIntfMethodParam

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TIntfMethodParam = packed record
    Flags: Byte;
    ParamName: TSymbolName;
    function ParamNameFld: TTypeInfoFieldAccessor; inline;
   {TypeName: ShortString;
    Tail: TIntfMethodParamTail;}
  end;

C++

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

Propriétés

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

Description

TIntfMethodParam est utilisé en interne pour stocker des informations RTTI de paramètre de méthode.

Les structures TIntfMethodParam sont automatiquement insérées par le compilateur Delphi pour toutes les méthodes d'interface qui sont marquées pour émettre des informations RTTI étendues.

N'utilisez pas directement TIntfMethodParam. Utilisez à la place la classe TRttiParameter pour accéder aux informations de paramètre associées à une interface Delphi.

Voir aussi