Hide/Disable 'File' menu in Matlab figure window
이전 댓글 표시
How to Hide/ Disable the 'FILE' menu alone from figure window?
thanks in advance!!!
Prem
채택된 답변
추가 답변 (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.
카테고리
도움말 센터 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!