System.Rtti.TRttiInstanceType.GetDeclaredMethods

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetDeclaredMethods: TArray<TRttiMethod>; override;

C++

virtual System::DynamicArray<TRttiMethod*> __fastcall GetDeclaredMethods(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 methods declared in the reflected class type.

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

See Also