System.Classes.TWriter.UseQualifiedNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UseQualifiedNames: Boolean read FUseQualifiedNames write FUseQualifiedNames;

C++

__property bool UseQualifiedNames = {read=FUseQualifiedNames, write=FUseQualifiedNames, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Classes.pas
System.Classes.hpp
System.Classes TWriter

Description

Indicates whether all class names should be qualified by the name of the unit in which they are defined.

Set UseQualifiedNames to indicate whether class names need to be qualified by the name of the unit in which they are defined. In Windows versions of the IDE, for example, some components (such as TButton) appear both in the Windows-only and in the FireMonkey component libraries. When writing such a component, setting UseQualifiedNames to true allows a reader to distinguish the Windows-only TButton control in StdCtrls from the multi-device FMX.StdCtrls.TButton.

See Also