Find all graphics objects
h = findall( returns the graphics
objects in objhandles)objhandles and all of their descendants. Unlike the findobj function, findall returns objects even if their
HandleVisibility property is set to 'off'.
h = findall(
returns the handles of all objects in the hierarchy that have the specified properties set
to the specified values. For example, objhandles,prop1,value1,...,propN,valueN)h =
findall(gcf,'Type','text',Color','r') returns all text objects in the current
figure that have a red color.
To customize your search with findall, you can use
objhandles followed by the input combinations from the findobj function. For example:
h = findall(groot,prop1,value1,'-not',prop2,value2,'-property',prop3)