System.TypInfo.PPropInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PPropInfo = ^TPropInfo;

C++

typedef TPropInfo *PPropInfo;

Properties

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

Description

PPropInfo points to a TPropInfo record that holds component property information.

TPropInfo is principally used to hold the results of a call to GetPropInfo. It provides meta details about a component property as part of Delphi's RTTI (Run Time Type Information) mechanism, giving run time component property processing. This allows for more generalised component handling that avoids excessive hard coded values. PPropInfo is a pointer to a TPropInfo record.

See Also