System.Rtti.TRttiType.GetIndexedProperties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetIndexedProperties: TArray<TRttiIndexedProperty>; virtual;

C++

virtual System::DynamicArray<TRttiIndexedProperty*> __fastcall GetIndexedProperties(void);

Properties

Type Visibility Source Unit Parent
function public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TRttiType

Description

Gets the indexed properties available in the type reflected by the current TRttiType instance (as an array).

GetIndexedProperties returns an array containing the indexed properties that can be accessed from the type reflected by the current TRttiType instance. The order of the indexed properties is determined by the class inheritance: indexed properties declared in base classes are positioned at high array indexes.

See Also