System.TVarArrayBound

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

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

Description

Gives bound information for one dimension of a safe array.

Declare a variable of type TVarArrayBound to store information about the array bounds, corresponding to one dimension of a safe array.

The following list describes each field in the TVarArrayBound type.



Field Meaning

ElementCount

The number of elements in the corresponding dimension.

LowBound

The low bound of the index range in the corresponding dimension.



See Also