System.ObjAuto.TMethodInfoHeader

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TMethodInfoHeader = packed record
    Len: Word;
    Addr: Pointer;
    Name: TSymbolName;
    function NameFld: TTypeInfoFieldAccessor;
  end;

C++

struct DECLSPEC_DRECORD TMethodInfoHeader
{
public:
    System::Word Len;
    void *Addr;
    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 the information header of a method.

TMethodInfoHeader contains information regarding a specific method that belongs to a class.

Field Description
Len For internal use.
Addr The address of the method (in Delphi: @<class name>.<method name>).
Name The name of the method.

See Also

Code Examples