| | | Locate graphics objects with specific properties h = findobj h = findobj('PropertyName',PropertyValue,...) h= findobj('PropertyName1,PropertyValue,'-logicaloperator', PropertyName',PropertyValue,...) h = findobj('-regexp','PropertyName','regexp',...) h = findobj('-property','PropertyName') h = findobj(objhandles,... ) h = findobj(objhandles, -depth ,d,... ) h = findobj(objhandles,'flat','PropertyName',PropertyValue, ■ ■■) Description findobj locates graphics objects and returns their handles. You can limit the search to objects with particular property values and along specific branches of the hierarchy. h = findobj returns the handles of the root object and all its descendants. h = findobj('PropertyName',PropertyValue,...) returns the handles of all graphics objects having the property PropertyName,setto the value PropertyValue. You can specify more than one property/value pair, in which case, findobj returns only those objects having all specified values. h= findobj( PropertyName ,PropertyValue, - logicaloperator , PropertyName ,PropertyValue,... ) applies the logical operator to the property value matching. Possible values for -logicaloperator are: • -and • -or • -xor • -not | | |