Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Справка Scilab >> GUI > uigetfont

uigetfont

Opens a dialog for selecting a font.

Syntax

[fontname, fontsize, bold, italic] = uigetfont()
[fontname, fontsize, bold, italic] = uigetfont(defaultfontname)
[fontname, fontsize, bold, italic] = uigetfont(defaultfontname, defaultfontsize)
[fontname, fontsize, bold, italic] = uigetfont(defaultfontname, defaultfontsize , defaultbold)
[fontname, fontsize, bold, italic] = uigetfont(defaultfontname, defaultfontsize , defaultbold, defaultitalic);

Arguments

All output arguments are optional, provided that their order is kept.

defaultfontname

String: the default font name to select in the dialog.

defaultfontsize

Scalar: the default font size to select in the dialog.

defaultbold

Boolean: the default bold attribute in the dialog (%T for bold font, %F otherwise).

defaultitalic

Boolean: the default italic attribute in the dialog (%T for bold font, %F otherwise).

fontname

The selected font name ("" if the user cancels).

fontsize

The selected font size ([] if the user cancels).

bold

%T if bold attribute has been selected, %F otherwise ([] if the user cancels).

italic

%T if italic attribute has been selected, %F otherwise ([] if the user cancels).

Description

Creates a dialog window for selecting a font.

Examples

uigetfont()
uigetfont("arial")
uigetfont("arial", 24)
uigetfont("arial", 24, %T)
uigetfont("arial", 24, %T, %F)

See Also

  • xlfont — load a font in the graphic context or query loaded font
Report an issue
<< uigetfile GUI uiputfile >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:39:58 CET 2022