System.ObjAuto.TParamInfo

From RAD Studio API Documentation
Jump to: navigation, search

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();
};

Properties

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

Description

Represents information pertaining to the parameters of a method.

TParamInfo is used internally (in the ObjectInvoke function).

See Also