28.12.2012 Views

Figure Properties - SERC

Figure Properties - SERC

Figure Properties - SERC

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

2findall<br />

Purpose Find handles of all graphics objects<br />

Syntax object_handles = findall(handle_list)<br />

object_handles = findall(handle_list,'property','value',...)<br />

Description object_handles = findall(handle_list) returns the handles of all objects<br />

in the hierarchy under the objects identified in handle_list.<br />

findall<br />

object_handles = findall(handle_list,'property','value',...)<br />

returns the handles of all objects in the hierarchy under the objects identified<br />

in handle_list that have the specified properties set to the specified values.<br />

Remarks findall is similar to findobj, except that it finds objects even if their<br />

HandleVisibility is set to off.<br />

Examples plot(1:10)<br />

xlabel xlab<br />

a = findall(gcf)<br />

b = findobj(gcf)<br />

c = findall(b,'Type','text') % return the xlabel handle twice<br />

d = findobj(b,'Type','text') % can't find the xlabel handle<br />

See Also allchild, findobj<br />

2-833

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!