System.Rtti.TRttiPackage.GetTypes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetTypes: TArray<TRttiType>; virtual; abstract;

C++

virtual System::DynamicArray<TRttiType*> __fastcall GetTypes(void) = 0 ;

Properties

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

Description

Returns a list of TRttiType instances used to reflect all the Delphi types that provide type information.

Use GetTypes to obtain a list RTTI objects describing all the Delphi types that provide type information. The types are looked up in the package described by this TRttiPackage instance.

The types that do not provide type information are ignored.

See Also