System.Rtti.TRttiMethod.ReturnType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ReturnType: TRttiType read GetReturnType;

C++

__property TRttiType* ReturnType = {read=GetReturnType};

Properties

Type Visibility Source Unit Parent
property public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TRttiMethod

Description

Specifies the return type of the method.

Use ReturnType to obtain a RTTI object that describes the return type of the method. If the method does not return a value, ReturnType is nil.

See Also