필터 지우기
필터 지우기

Is there a function to look for the children and their property of an existing figure?

조회 수: 4 (최근 30일)
Is there a function to look for the children and their property of an existing figure?

채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 22일
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
QiQin Zhan
QiQin Zhan 2013년 2월 22일
Well, I'm sorry that I haven't expressed my meaning clearly. What I want to know is whether there is a function to display the children of an existing figure.Thanks for your answer!
Walter Roberson
Walter Roberson 2013년 2월 22일
"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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by