how to find objects with handlevisibility off?

Here's a tricky question -
How do I find all the objects with HandleVisibility set to off?
get(get(gca,'xlabel'),'HandleVisibility')
ans =
off
but,
findobj(0,'HandleVisibility','off')
ans =
Empty matrix: 0-by-1
It came up after trying to duplicate a figure (it doesn't work when playing with xlabel position, for example)
Any idea (for either one of the issues) will be blessed

 Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 5 Aug. 2015

1 Stimme

doc findall
doc allchild

2 Kommentare

Thanks.
Another workaround I found was this:
set(0,'ShowHiddenHandles','on')
This is generally overkill. Handles tend to be hidden for a reason.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Hilfe-Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by