Hide/Disable 'File' menu in Matlab figure window
조회 수: 5 (최근 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
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!