Vcl.Forms.TScreen.Fonts

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Fonts: TStrings read GetFonts;

C++

__property System::Classes::TStrings* Fonts = {read=GetFonts};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TScreen

Description

Lists the face names for all fonts supported by the screen.

Read Fonts to learn what screen fonts are currently installed. Applications can use Fonts to ensure that they do not request a font that is not installed on the user's system. When an application uses a TFont object to request a font that is not installed, the system substitutes another font, which may not be a font appropriate to the application's needs.

Note: Fonts is a list of screen fonts. It does not give any indication of the printer fonts available to the application.

See Also

Code Examples