Return handle of current graphic window.
h = gcf()
:h handle. :
This routine returns the handle of the current graphic window.
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