Is there a function to look for the children and their property of an existing figure?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is there a function to look for the children and their property of an existing figure?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 22 Feb. 2013
Yes, findobj().
You already knew that from your previous question, http://www.mathworks.co.uk/matlabcentral/answers/64487-how-to-get-the-object-handle, which is still active and is waiting for you to clarify your question.
2 Kommentare
Walter Roberson
am 22 Feb. 2013
"display" is ambiguous. And "children" can also be.
get(FigureHandle, 'Children') %if you want the immediate non-hidden children
findobj(FigureHandle) %visible handles at all levels
findall(FigureHandles) %visible and invisible handles at all levesl
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!