System.TypInfo.PAttrEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PAttrEntry = ^TAttrEntry;

C++

typedef TAttrEntry *PAttrEntry;

Properties

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

Description

PAttrEntry is used internally to represent an attribute.

PAttrEntry is a pointer to a TAttrEntry record.

TAttrEntry structures are automatically inserted by the Delphi compiler for all types and members that are annotated with attributes.

Do not use PAttrEntry directly; instead, use the TRttiType class to gain access to attribute information associated with a Delphi type.

See Also