System.Rtti.TRttiInstanceType.GetDeclaredProperties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetDeclaredProperties: TArray<TRttiProperty>; override;

C++

virtual System::DynamicArray<TRttiProperty*> __fastcall GetDeclaredProperties(void);

Properties

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

Description

Returns a list of all the properties declared in the reflected class type.

Use the GetDeclaredProperties method to obtain a list of all the properties that are declared in the reflected class type. To obtain the list of the properties in the reflected class (including the inherited ones), use the GetProperties method instead.

See Also