System.TObject.QualifiedClassName
Delphi
class function QualifiedClassName: string;
C++
__classmethod UnicodeString __fastcall QualifiedClassName();
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| function | public | System.pas systobj.h | System | TObject | 
Description
Returns the qualified name of the class.
QualifiedClassName returns the class's unit scope concatenated with the class name. Example:
uses
  SysUtils, SyncObjs;
begin
  Writeln(TEvent.QualifiedClassName); // displays System.SyncObjs.TEvent