System.TypInfo.TAttrEntry

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TAttrEntry = record

C++

struct DECLSPEC_DRECORD TAttrEntry
{
public:
    PTypeInfo *AttrType;
    void *AttrCtor;
    System::Word ArgLen;
    System::StaticArray<System::Byte, 65536> ArgData;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

TAttrEntry is used internally to represent an attribute.

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

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

See Also