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
progressionbar
進行バーを描画
呼び出し手順
winId=progressionbar(mes) progressionbar(winId[,mes])
引数
- mes
文字列, 表示するメッセージ.
- winId
0より大きい整数, ウインドウID.
説明
progressionbar(mes)
は新しい
進行バーを作成し,ウインドウIDを返します.
progressionbar(winId[,mes])
は
winIdで指定される進行バーを更新します.
例
winId=progressionbar('Do something'); realtimeinit(0.3); for j=0:0.1:1, realtime(3*j); progressionbar(winId); end close(winId);
Report an issue | ||
<< printsetupbox | GUI | root_properties >> |