Scilab 5.4.0
      
      - 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 2026.0.0. This page might be outdated.
See the recommended documentation of this function
close
図を閉じる
引数
- h
 整数,閉じるウインドウのハンドル.
説明
このルーチンはtksci図(トップレベルウインドウ)を閉じます. ハンドルが指定された場合,このハンドルに対応する図が閉じられます. それ以外の場合,カレントの(アクティブな)図が閉じられます.
例
h=figure(); // 1番の図を作成 uicontrol( h, 'style','text', ... 'string','scilab is great', ... 'position',[50 70 100 100], ... 'fontsize',15); // 図1に冴えた文字列を指定 figure(); // 図2を作成 uicontrol( 'style','text', ... 'string','Really great', 'position',[50 70 100 100], 'fontsize',15); // 図2にテキストを指定 close(); // カレントのグラフィックウインドウ(すなわち図2)を閉じる close(h); // 図1を閉じる
参照
| Report an issue | ||
| << clipboard | GUI | delmenu >> |