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 > handle > gce

gce

Get current entity handle.

Syntax

e = gce()

Arguments

e

handle, the handle of the current entity.

Description

This routine returns the handle of the last created (and still existent) entity.

Examples

a=gca() //get the handle of the newly created axes
a.data_bounds=[1,1;10,10];
a.axes_visible = 'on' ;
for i=1:5
  xfrect(7-i,9-i,3,3);
  e=gce();
  e.background=i;
end
delete(); // delete current entity
delete(gce()); // delete current entity
delete(gcf()); // delete current figure

See Also

  • gcf — Return handle of current graphic window.
  • gca — Return handle of current axes.
  • get — Retrieve a property value from a graphics entity or an User Interface object.
  • graphics_entities — description of the graphics entities data structures
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