System.Rtti.TRttiPackage.FindType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function FindType(const AQualifiedName: string): TRttiType; virtual; abstract;

C++

virtual TRttiType* __fastcall FindType(const System::UnicodeString AQualifiedName) = 0 ;

Properties

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

Description

Returns a TRttiType instance for the queried type name.

Use FindType to obtain a TRttiType object describing the type specified by the AQualifiedName parameter.

TRttiType only works for public types that have qualified names.

See Also