System.Rtti.PRecordTypeMethod

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PRecordTypeMethod = ^TRecordTypeMethod;

C++

typedef TRecordTypeMethod *PRecordTypeMethod;

Properties

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

Description

Pointer to a TRecordTypeMethod record.

PRecordTypeMethod is used internally in order to access RTTI information regarding the methods in a record.

TRecordTypeMethod structures are automatically inserted by the Delphi compiler for all methods in a record that is marked to emit extended RTTI.

Do not use PRecordTypeField directly. Instead, use the TRttiMethod class to gain access to the method information associated with a Delphi record.

See Also