MATLAB: How to add or remove the menubar or toolbar from a figure in MATLAB

addchangefigureMATLABmenubarnoneremovetoolbar

How can I add or remove the menubar or toolbar from a figure in MATLAB?
I want to control whether the menubar and toolbar appear in a figure. Can I turn them on or off?

Best Answer

You can use SET command to change the MenuBar and Toolbar properties of the figure to control whether the menubar and toolbar are shown in a MATLAB figure.
The possible values for Menu Bar are:
'none' - the menubar is not shown
'figure' - the menubar is shown
The possible values for ToolBar are:
'none' - the toolbar is not shown
'auto' - the toolbar is controlled by the menubar. If MenuBar is set to 'figure', then the toolbar is shown. If 'MenuBar is set to 'none', then the toolbar isn't shown.
'figure' - the toolbar is shown
For example, the following code will open a figure without the menubar and toolbar:
hFigure = figure;
set(hFigure, 'MenuBar', 'none');
set(hFigure, 'ToolBar', 'none');