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
waitbar
waitbarを描画
呼び出し手順
winH=waitbar(x) winH=waitbar(x,mes) winH=waitbar(mes) waitbar(x,winH) waitbar(mes,winH) waitbar(x,mes,winH)
引数
- x
実数, 表示する割合.
- mes
文字列, 表示するメッセージ.
- winH
waitbarのハンドル.
説明
waitbar(x)
は,
割合xを表示するwaitbarを新規に作成し,
このwaitbarのハンドルを返します.
waitbar(x,mes)
は
割合xおよびメッセージmesを表示するwaitbarを新規に作成し,
このwaitbarのハンドルを返します.
waitbar(mes)
は,
割合0およびメッセージmesを表示するwaitbarを新規に作成し,
このwaitbarのハンドルを返します.
waitbar(x,winH)
,
waitbar(mes,winH)
および
waitbar(x,mes,winH)
は,
ハンドルwinH
を有するwaitbarを更新します.
例
winH=waitbar('This is an example'); realtimeinit(0.3); for j=0:0.1:1, realtime(3*j); waitbar(j,winH); end close(winH);
Report an issue | ||
<< usecanvas | GUI | x_choices >> |