System.Rtti.TRttiInterfaceType.GetDeclaredMethods

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetDeclaredMethods: TArray<TRttiMethod>; override;

C++

virtual System::DynamicArray<TRttiMethod*> __fastcall GetDeclaredMethods();

Properties

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

Description

Returns a list of all the methods declared in the reflected interface type.

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

See Also