Hide/Disable 'File' menu in Matlab figure window
Afficher commentaires plus anciens
How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem
Réponse acceptée
Plus de réponses (1)
Jim Hokanson
le 1 Mai 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.
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!