Array type data.
Source position: typinfo.pp line 302
type TArrayTypeData = packed record |
||
public |
||
|
Type information for an element in the array. |
|
|
Range information for each dimension in the array. |
|
Size: SizeInt; |
|
Declared size of the array. |
ElCount: SizeInt; |
|
Total number of elements in the array. |
ElTypeRef: PPTypeInfo; |
|
Reference to element type info. |
DimCount: Byte; |
|
Number of dimensions in the array. |
DimsRef: array [0..255] of PPTypeInfo; |
|
Reference to dimension data. |
|
||
end; |
TArrayTypeData is used to describe arrays in RTTI. It can be encountered when the type kind is tkArray, and is used for both static and dynamic arrays and single or multi-dimensional arrays. The type of the array elements is described in elType, and the ranges for each of the dimensions (specified in DimCount in Dims.
|
Type information record. |
|
|
Type of a property. |
|
|
Class properties type data record. |