System.TypInfo.PTypeData
Delphi
PTypeData = ^TTypeData;
C++
typedef TTypeData *PTypeData;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
pointer typedef |
public | System.TypInfo.pas System.TypInfo.hpp |
System.TypInfo | System.TypInfo |
Description
PTypeData points to a TTypeData record that holds component property type information.
TTypeData is principally used to hold the results of a call to GetTypeData. It provides meta details about a component property type 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. PTypeData is a pointer to a TTypeData record.
See Also
Code Examples