Find all graphics objects
object_handles = findall(handle_list)
object_handles = findall(handle_list,'property','value',...)
object_handles = findall(handle_list)
returns
the handles, including hidden handles, of all objects in the hierarchy
under the objects identified in handle_list
.
object_handles = findall(handle_list,'property','value',...)
returns
the handles of all objects in the hierarchy under the objects identified
in handle_list
that have the specified properties
set to the specified values.
findall
is similar to findobj
,
except that it finds objects even if their HandleVisibility
is
set to off
.