- Scilab Help
- GUI
- Borders
- Layouts
- Menus
- uitree
- about
- clipboard
- close
- Console properties
- createWindow
- exportUI
- figure
- findobj
- gcbo
- getcallbackobject
- getinstalledlookandfeels
- getlookandfeel
- getvalue
- Interactive Editor
- 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 2025.0.0. This page might be outdated.
See the recommended documentation of this function
x_choices
interactive Xwindow choices through toggle buttons
Syntax
rep=x_choices(title,items)
Arguments
- title
vector of strings, title for the popup window.
- items
a list of items
items=list(item1,...,itemn)
, where eachitem
is also a list of the following type :item=list('label',default_choice,choices)
.default_choice
is an integer which gives the default toggle on entry andchoices
is a row vector of strings which gives the possible choices.- rep
an integer vector which gives for each item the number of the selected toggle. If user exits dialog with "cancel" button
rep
is set to[]
.
Description
Select items through toggle lists and return in rep
the selected
items
Type x_choices()
to see an example.
Examples
Report an issue | ||
<< waitbar | GUI | x_choose >> |