[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Type information for a dynamic array.
Source position: dynarrh.inc line 24
type tdynarraytypeinfo = packed record |
||
kind: TTypeKind; |
|
Kind of array. |
namelen: Byte; |
|
Length of the Name of the array type. Name follows as Namelen characters. |
elesize: SizeInt; |
|
Size of a single element in the array |
eletype: ppdynarraytypeinfo; |
|
Pointer to next dimension structure in case of a multidimensional array |
vartype: LongInt; |
|
Type (variant type) of element in the array |
end; |
tdynarraytypeinfo describes the structure of a multi-dimensional dynamic array. It is used in the DynArraySetLength call.
|
Set the length of a dynamic array |