System.TypInfo.TAttrEntry

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

  TAttrEntry = record
    AttrType: PPTypeInfo;
    AttrCtor: Pointer;
    ArgLen: Word;
    ArgData: array[1..65536 {ArgLen - 2}] of Byte;
  end;

C++

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

プロパティ

種類 可視性 ソース ユニット
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

説明

TAttrEntry は、属性を表すために内部的に使われるものです。

属性の注釈が付いている型やメンバすべてに対して、Delphi コンパイラは自動的に TAttrEntry 構造体を挿入します。

Delphi の型に関連付けられた属性情報にアクセスするには、TAttrEntry を直接使用するのではなく、TRttiType クラスを使用してください。

関連項目