Scilab 5.4.1
- Scilab help
- GUI
- Tree
- about
- addmenu
- clipboard
- close
- delmenu
- exportUI
- figure
- findobj
- gcbo
- getcallbackobject
- getinstalledlookandfeels
- getlookandfeel
- getvalue
- messagebox
- printfigure
- printsetupbox
- progressionbar
- root_properties
- setlookandfeel
- setmenu
- toolbar
- toprint
- tree_show
- uicontextmenu
- uicontrol
- uigetcolor
- uigetdir
- uigetfile
- uigetfont
- uimenu
- uiputfile
- unsetmenu
- 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_choose_modeless
対話的な選択ウインドウ(モーダルダイアログでない)
呼び出し手順
[num]=x_choose_modeless(items,title [,button])
引数
- items
文字列の列ベクトル. 選択する要素
- title
文字列の列ベクトル, ダイアログのコメント
- button
文字列, ボタンに表示されるテキスト. デフォルト値は'Cancel'です
- num
整数, 選択された要素の番号または 0 ("Cancel"ボタンが押された場合)
説明
選択された要素の番号をnum
に返します.
例
n = x_choose_modeless(['item1';'item2';'item3'],['that is a comment';'for the dialog']) n = x_choose_modeless(['item1';'item2';'item3'],['that is a comment'],'Return')
参照
Report an issue | ||
<< x_choose | GUI | x_dialog >> |