Hide/Disable 'File' menu in Matlab figure window
조회 수: 22(최근 30일)
표시 이전 댓글
How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem
댓글 수: 0
채택된 답변
Daniel Shub
2011년 9월 21일
The simplest might be:
set(gcf, 'MenuBar', 'None')
If you need more control I would start with:
댓글 수: 2
Daniel Shub
2011년 9월 21일
You are correct, the set method will hide everything. I have edited my answer to provide a link.
추가 답변(1개)
Jim Hokanson
2020년 5월 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.
댓글 수: 0
참고 항목
범주
Find more on Simulink Environment Customization in Help Center and File Exchange
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!