System.Rtti.TRttiType.GetDeclaredIndexedProperties

From RAD Studio API Documentation
Revision as of 22:52, 16 October 2011 by PyBot (talk | contribs) (Scoping Libraries)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

function GetDeclaredIndexedProperties: TArray<TRttiIndexedProperty>; virtual;

C++

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

Properties

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

Description

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

GetDeclaredIndexedProperties returns an array containing the RTTI corresponding to the indexed properties declared in the type reflected by the current TRttiType instance.

Note: This method returns nil in TRttiType. It is overridden in classes that inherit TRttiType.

See Also