Get current entity handle.
e = gce()
:e handle, the handle of the current entity. :
This routine returns the handle of the last created (and still existent) entity.
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