Main Content
addNewPositionCallback
Add new-position callback to ROI object
addNewPositionCallback
is not recommended. With the new ROIs, use
the addlistener
object function instead. For more information, see
Version History.
Description
adds the function handle id
= addNewPositionCallback(h
,fcn
)fcn
to the list of new-position
callback functions of the ROI object h
. Whenever the ROI object
changes its position, each function in the list is called with the
syntax:
fcn(pos)
pos
is of the form returned by the object's getPosition
method.
The return value, id
, is used only with removeNewPositionCallback
.