System.TypInfo.PManagedField

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PManagedField = ^TManagedField;

C++

typedef TManagedField *PManagedField;

Properties

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

Description

PManagedField is used internally to store managed field RTTI information.

PManagedField is a pointer to a TManagedField record.

TManagedField structures are automatically inserted by the Delphi compiler for all managed fields that are marked to emit extended RTTI.

Do not use PManagedField directly; instead, use the TRttiManagedField class to gain access to field information associated with a Delphi type.

See Also