System.TypInfo.PVmtMethodParam

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PVmtMethodParam = ^TVmtMethodParam;

C++

typedef TVmtMethodParam *PVmtMethodParam;

Properties

Type Visibility Source Unit Parent
pointer
typedef
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

PVmtMethodParam is used internally to store method parameter RTTI information.

PVmtMethodParam is a pointer to a TVmtMethodParam record.

TVmtMethodParam structures are automatically inserted by the Delphi compiler for all instance methods that are marked to emit extended RTTI.

Do not use PVmtMethodParam directly; instead, use the TRttiParameter class to gain access to parameter information associated with a Delphi instance method.

See Also