Hide/Disable 'File' menu in Matlab figure window

How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem

 Accepted Answer

The simplest might be:
set(gcf, 'MenuBar', 'None')
If you need more control I would start with:

2 Comments

this will hide the entire menu right??
Atleast i need to keep the Hand/Rotation tool menu.
You are correct, the set method will hide everything. I have edited my answer to provide a link.

Sign in to comment.

More Answers (1)

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.

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Asked:

on 21 Sep 2011

Answered:

on 1 May 2020

Community Treasure Hunt

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

Start Hunting!