Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Graphics > figure_operations > gcf

gcf

Return handle of current graphic window.

Syntax

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

See Also

  • gdf — Return handle of default figure.
  • gca — Return handle of current axes.
  • gce — Get current entity handle.
  • get — Retrieve a property value from a graphics entity or an User Interface object.
  • scf — set the current graphic figure (window)
  • set — set a property value of a graphic entity object or of a User Interface object.
  • graphics_entities — description of the graphics entities data structures
  • uicontrol — create a Graphic User Interface object
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:39 CEST 2016