- Ajuda do Scilab
 - IGU
 - Borders
 - Layouts
 - Menus
 - uitree
 - about
 - clipboard
 - close
 - Console properties
 - createWindow
 - exportUI
 - figure
 - findobj
 - gcbo
 - getcallbackobject
 - getinstalledlookandfeels
 - getlookandfeel
 - getvalue
 - Editor Interativo
 - loadGui
 - messagebox
 - printfigure
 - printsetupbox
 - progressionbar
 - root_properties
 - saveGui
 - setlookandfeel
 - toolbar
 - toprint
 - tree_show
 - uicontrol
 - uicontrol properties
 - uigetdir
 - uigetfile
 - uigetfont
 - uiputfile
 - usecanvas
 - waitbar
 - x_choices
 - x_choose
 - x_choose_modeless
 - x_dialog
 - x_matrix
 - x_mdialog
 
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
uigetfont
Opens a dialog for selecting a font.
Syntax
uigetfont() [fontname [,fontsize [,bold [,italic]]]] = uigetfont([defaultfontname [,defaultfontsize [,defaultbold [,defaultitalic]]]]); [fontname ,fontsize ,bold ,italic] = uigetfont(defaultfontname ,defaultfontsize ,defaultbold ,defaultitalic);
Arguments
- 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)
| Report an issue | ||
| << uigetfile | IGU | uiputfile >> |