Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - Português

Change language to:
English - Français - 日本語 - Русский

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

Ajuda do Scilab >> IGU > close

close

closes graphic figures, progressionbars or waitbars

Syntax

close
close(H)

Arguments

H

Handle or vector of handles of graphic figures or progression bar or wait bar. These different types of handles can be mixed in H.

By default, the current graphic figure is considered.

Description

Graphic windows based on the Tk technology (such as still used by imshow() in the SIVP external module) may be closed as well by providing their number that is their handle.

Examples

// creates  figure number 1.
h = scf();
// put a clever text in figure 1
uicontrol( h, 'style','text', ...
              'string','scilab is great', ...
              'position',[50 70 100 100], ...
              'fontsize',15);
// create figure 2
scf();
// put a text in figure 2
uicontrol( 'style','text', ...
           'string','Really great', 'position',[50 70 100 100], 'fontsize',15);

close();   // close the current graphic window (ie fig. 2)
close(h);  // close figure 1

// create a progression bar
wid1=progressionbar("Message");
// close it
close(wid1);

See also

  • xdel — deleta uma janela de gráficos
  • delete — Deleta uma entidade gráfica e seus galhos
  • figure — create a figure
  • scf — Ajusta a (janela) de figura gráfica corrente
  • gcf — Retorna o manipulador da janela GUI ou de gráficos corrente.
Report an issue
<< clipboard IGU 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 Feb 14 15:00:47 CET 2019