Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - Русский

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 >> GUI > close

close

close a figure or a window

Arguments

h

integer Handle or window identification of the window to close.

Description

This routine close a tksci figure (toplevel window). If a handle (resp. window identification) is given, the figure (resp. window) corresponding to this handle (resp. window identification) is closed. Otherwise, the current (active) figure is closed.

Examples

h=figure();
// creates  figure number 1.  
uicontrol( h, 'style','text', ...
              'string','scilab is great', ...
              'position',[50 70 100 100], ...
              'fontsize',15);
// put a clever text in figure 1
figure();
// create figure 2
uicontrol( 'style','text', ...
           'string','Really great', 'position',[50 70 100 100], 'fontsize',15);
// put a text in figure 2
close();
// close the current graphic window (ie fig. 2)
close(h);
// close figure 1
wid1=progressionbar("Message");
// create a progression bar
close(wid1);
// close this window

See Also

  • figure — create a figure
  • gcf — Return handle of current graphic window.
  • xdel — удаление графического окна
  • delete — delete a graphic entity and its children.
Report an issue
<< clipboard GUI Console properties >>

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:
Thu Oct 02 14:01:08 CEST 2014