System.ObjAuto.TParamInfo

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TParamInfo = packed record
    Flags: System.TypInfo.TParamFlags;
    ParamType: ^PTypeInfo;
    Access: Word;
    Name: TSymbolName;
    function NameFld: TTypeInfoFieldAccessor;
  end;

C++

struct DECLSPEC_DRECORD TParamInfo
{
public:
    System::Typinfo::TParamFlags Flags;
    System::Typinfo::PTypeInfo *ParamType;
    System::Word Access;
    System::Typinfo::TSymbolName Name;
    System::Typinfo::TTypeInfoFieldAccessor __fastcall NameFld();
};

Propriétés

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

Description

Représente les informations se rapportant aux paramètres d'une méthode.

TParamInfo est utilisé en interne (dans la fonction ObjectInvoke).

Voir aussi