Select, move, resize, or copy Axes and Uicontrol graphics objects
Syntax
A = selectmoveresize;
set(h,'ButtonDownFcn','selectmoveresize')
Description
selectmoveresize
is a function that you can use as the callback routine for Axes and Uicontrol button down functions. When executed, it selects the object and allows you to move, resize, and copy it.
For example, this statement sets the button down function of the current Axes to selectmoveresize:
set(gca,'ButtonDownFcn','selectmoveresize')
A = selectmoveresize
returns a structure array containing:
See Also
The ButtonDownFcn
of Axes and Uicontrol graphics objects
[ Previous | Help Desk | Next ]