API:System.TypInfo.TArrayTypeData

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TArrayTypeData = packed record
    Size: Integer;
    ElCount: Integer; // product of lengths of all dimensions
    ElType: PPTypeInfo;
    DimCount: Byte;
    Dims: array[0..255 {DimCount-1}] of PPTypeInfo;
  end;

C++

struct DECLSPEC_DRECORD TArrayTypeData
{
public:
    int Size;
    int ElCount;
    PTypeInfo *ElType;
    System::Byte DimCount;
    System::StaticArray<PPTypeInfo, 256> Dims;
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.