close a figure or a window
integer Handle or window identification of the window to close.
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.
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 | ![]() | ![]() |