System.TypInfo.PArrayTypeData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PArrayTypeData = ^TArrayTypeData;

C++

typedef TArrayTypeData *PArrayTypeData;

Properties

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

Description

PArrayTypeData is used internally to store array RTTI information.

PArrayTypeData is a pointer to a TArrayTypeData record.

TArrayTypeData structures are automatically inserted by the Delphi compiler for all array types that are marked to emit extended RTTI.

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

See Also