Scilab 5.3.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
gcf
Return handle of current graphic window.
Calling Sequence
h = gcf()
Arguments
- h
handle.
Description
This routine returns the handle of the current graphic window.
Examples
f=gcf(); // Create a figure f.figure_size= [610,469]/2; f.figure_name= "Foo"; f=figure(); // Create a figure h=uicontrol(f,"style","listbox","position", [10 10 150 160]); // Create a listbox set(h, "string", "item 1|item 2|item3");// fill the list set(h, "value", [1 3]); // select item 1 and 3 in the list gcf() scf(0); // Make graphic window 0 the current figure gcf() // Return the graphic handle of the current figure figure(f) // Make window f the current figure gcf() // Return the graphic handle of the current figure
Authors
Serge Steer, INRIA
<< figure_properties | figure_operations | gdf >> |