Hide/Disable 'File' menu in Matlab figure window
Mostra commenti meno recenti
How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem
Risposta accettata
Più risposte (1)
Jim Hokanson
il 1 Mag 2020
Here's what I needed:
h = findall(gcf, 'Tag', 'figMenuFile')
set(h,'visible','off')
All the other menus appear to be tagged in a similar way:
- figMenuHelp
- figMenuWindow
- etc.
Categorie
Scopri di più su Interactive Control and Callbacks in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!