System.Rtti.TRttiArrayType.DimensionCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DimensionCount: Integer read GetDimensionCount;

C++

__property int DimensionCount = {read=GetDimensionCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TRttiArrayType

Description

Specifies the number of dimensions defined for the static array.

Use DimensionCount to obtain the number of defined dimensions in the static array. Unlike a dynamic array that has only one dimension, static arrays can declare more than one dimension; use DimensionCount to obtain that number. To find out the size of each dimension, use the indexed Dimensions property.

See Also