Azzera filtri
Azzera filtri

Hide/Disable 'File' menu in Matlab figure window

8 visualizzazioni (ultimi 30 giorni)
How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem

Risposta accettata

Daniel Shub
Daniel Shub il 21 Set 2011
The simplest might be:
set(gcf, 'MenuBar', 'None')
If you need more control I would start with:
  2 Commenti
premraj
premraj il 21 Set 2011
this will hide the entire menu right??
Atleast i need to keep the Hand/Rotation tool menu.
Daniel Shub
Daniel Shub il 21 Set 2011
You are correct, the set method will hide everything. I have edited my answer to provide a link.

Accedi per commentare.

Più risposte (1)

Jim Hokanson
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 Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by