Popup Menu visibility in MATLAB GUI

6 views (last 30 days)
How can I make the property of a popup menu invisible by pressing a button?
Thankx.

Accepted Answer

Walter Roberson
Walter Roberson on 18 Dec 2013
set() the Visible property of the uicontrol to 'off'
  3 Comments
Walter Roberson
Walter Roberson on 18 Dec 2013
set(handles.NameOfPopupControl, 'visible', 'off');
Raisa Qadir
Raisa Qadir on 18 Dec 2013
okay, got it. Thank you so much.

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!