System.TVarArrayBoundArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVarArrayBoundArray = array [0..0] of TVarArrayBound;

C++

typedef System::StaticArray<TVarArrayBound, 1> TVarArrayBoundArray;

Properties

Type Visibility Source Unit Parent
array
typedef
public
System.pas
System.hpp
System System

Description

Gives bound information for all the dimensions of a safe array.

Declare a variable of TVarArrayBoundArray type to store information about the array bounds, corresponding to all the dimensions of a safe array.

Each element in a TVarArrayBoundArray array is of type TVarArrayBound. The following table 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