Vcl.Graphics.TFont.Quality
Delphi
property Quality: TFontQuality read GetQuality write SetQuality default fqDefault;
C++
__property System::Uitypes::TFontQuality Quality = {read=GetQuality, write=SetQuality, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.Graphics.pas Vcl.Graphics.hpp |
Vcl.Graphics | TFont |
Description
Specifies the font quality.
Use Quality to set the font quality of the text to display.
Here are the possible values for quality:
Value | Meaning |
---|---|
fqDefault |
The quality is determined by the system settings. |
fqDraft |
For raster fonts, scaling is enabled; the font size can be increased but the quality may be lower. Also the font supports Bold, Italic, Underline or Strikeout if necessary. The quality is less important than when Proof is used. |
fqProof |
The quality of the characters is important, so for the raster fonts, scaling is disabled and the font closest in size is chosen. |
fqNonAntialiased |
The font is never antialiased. |
fqAntialiased |
The font is always antialiased if it supports it. The size of the font cannot be too small or too large. |
fqClearType |
The font is rendered using the ClearType antialiasing method. |
fqClearTypeNatural |
The font is rendered using the ClearTypeNatural antialiasing method. |
See Also