Hide/Disable 'File' menu in Matlab figure window
Mostrar comentarios más antiguos
How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem
Respuesta aceptada
Más respuestas (1)
Jim Hokanson
el 1 de Mayo de 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.
Categorías
Más información sobre Interactive Control and Callbacks en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!