System.Rtti.TRttiType.QualifiedName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property QualifiedName: string read GetQualifiedName;

C++

__property System::UnicodeString QualifiedName = {read=GetQualifiedName};

Properties

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

Description

Specifies the qualified name of the reflected type.

Use QualifiedName to obtain the qualified name of the type described by the TRttiType instance.

A qualified name includes the unit in which the type is declared. The unit and type names are separated by a dot character. QualifiedName is only available for public types declared in the interface section of a unit. QualifiedName raises an exception if the type is private.

See Also

Code Examples