System.TVarArrayBound

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TVarArrayBound = record
    ElementCount: Integer;
    LowBound: Integer;
  end;

C++

struct DECLSPEC_DRECORD TVarArrayBound
{
public:
    int ElementCount;
    int LowBound;
};

Propriétés

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

Description

Donne les informations de limite pour une dimension d'un tableau sécurisé.

Déclare une variable de type TVarArrayBound pour stocker les informations relatives aux limites de tableau, correspondant à une dimension d'un tableau sécurisé.

La liste suivante décrit chaque champ du type TVarArrayBound.



Champ Signification

ElementCount

Le nombre d'éléments de la dimension correspondante.

LowBound

La limite inférieure de la plage d'index, dans la dimension correspondante.



Voir aussi