Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> GUI > close

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を閉じる

参照

  • figure — 図を作成する
  • gcf — カレントグラフィックウインドウのハンドルを返す.
  • xdel — グラフィックウインドウを削除する
  • delete — グラフィックエンティティとその子を削除.
Report an issue
<< clipboard GUI delmenu >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Oct 01 17:40:36 CEST 2012