How to get UIFigure handle?

조회 수: 20 (최근 30일)
Micke Malmström
Micke Malmström 2016년 5월 18일
댓글: Mark Eigenraam 2021년 12월 13일
I want to check if a UIFigure exist already (then I dont have to open a new one). Ive tried searching with
findobj( 'HandleVisibility', 'off')
But with no luck. How can my script know if a certain .mlapp is already open or not?

채택된 답변

Chris Portal
Chris Portal 2016년 5월 20일
Right now, FINDOBJ can only be used to search for something within the App Designer app, so it requires the UIFIGURE handle to be passed in as the first argument:
findobj(h_uifigure, ...)
In order to search for a UIFigure itself, what you can use for now is FINDALL on the root object with whatever PV pairs you're interested in:
findall(0, 'HandleVisibility', 'off')
  댓글 수: 1
Mark Eigenraam
Mark Eigenraam 2021년 12월 13일
Hi, thanks for the above answer. Can someone expand to help out?
I have been suing finobj for years and have it everywhere in my code?
mfile.m contains the following which needs to be changed in App Designer.
findobj('tag','figHistViewer')
findobj('tag','fig_officer')
findobj('tag','fig_gnt')
findobj('tag','fig_asset')

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by