System.TypInfo.PPTypeInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PPTypeInfo = ^PTypeInfo;

C++

typedef PTypeInfo *PPTypeInfo;

Properties

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

Description

Holds a pointer to a pointer to information for a data type as returned by TypeInfo.

The TypeInfo function is part of Delphi's Run Time Type Information (RTTI) mechanism. It provides run time information about a specific data type. TypeInfo returns a PTypeInfo pointer to a TTypeInfo value. PPTypeInfo is a PTypeInfo pointer.

See Also