System.TypInfo.TAttrData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TAttrData = record
    Len: Word;
   {AttrEntry: array[] of TAttrEntry;}
  end;

C++

struct DECLSPEC_DRECORD TAttrData
{
public:
    System::Word Len;
};

Properties

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

Description

TAttrData is used internally to store attributes.

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

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

See Also