System.TypInfo.TPropDataEx

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TPropDataEx = packed record
    PropCount: Word;
    PropList: record end;
   {PropList: array[1..PropCount] of TPropInfoEx}
  end;

C++

struct DECLSPEC_DRECORD TPropDataEx
{
private:
    struct DECLSPEC_DRECORD _TPropDataEx__1
    {
    };
public:
    System::Word PropCount;
    _TPropDataEx__1 PropList;
};

Propriétés

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

Description

TPropDataEx est utilisé en interne pour stocker des informations RTTI de propriété.

Les structures TPropDataEx sont automatiquement insérées par le compilateur Delphi pour toutes les propriétés qui sont marquées pour émettre des informations RTTI étendues.

N'utilisez pas directement TPropDataEx. Utilisez à la place la classe TRttiProperty pour accéder aux informations de propriété associées à un type Delphi.

Voir aussi