System.Rtti.TRttiArrayType

From RAD Studio API Documentation
Jump to: navigation, search

System.Rtti.TRttiTypeSystem.Rtti.TRttiNamedObjectSystem.Rtti.TRttiObjectSystem.TObjectTRttiArrayType

Delphi

TRttiArrayType = class(TRttiType)

C++

class PASCALIMPLEMENTATION TRttiArrayType : public TRttiType

Properties

Type Visibility Source Unit Parent
class public
System.Rtti.pas
System.Rtti.hpp
System.Rtti System.Rtti

Description

TRttiArrayType is the RTTI object used to reflect a static array type.

TRttiArrayType is the class used to describe a static array type. TRttiArrayType defines a set of common traits that are true for all static array types.

TRttiArrayType offers run-time information about a static array, including its dimensions, the total number of elements, and the element type.

Do not create instances of TRttiArrayType or its descendants directly. Use a TRttiContext instance to work with RTTI objects.

See Also