tvararray
Type describing variant array
Declaration
Source position: varianth.inc line 82
Type
tvararray = record
public
  dimcount : Word;
  flags : Word;
  elementsize : LongInt;
  lockcount : LongInt;
  data : pointer;
  bounds : tvararrayboundarray;
end
Description
tvararray is a record describing a variant array. It contains some general data, followed by a number of TVarArrayBound records equal to the number of dimensions in the array (dimcoun).
See also
| Name | Description | 
|---|---|
| LongInt | A signed 32-bits integer | 
| LongInt | A signed 32-bits integer | 
| TVarArrayBound | Type describing variant array bounds. | 
| tvararrayboundarray | array of tvararraybound records. | 
| Word | An unsigned 16-bits integer | 
| Word | An unsigned 16-bits integer |