toggleToolbar()
toggleToolbar(newState?: boolean)
//This will toggle the toolbar visibility state
sambaFrame.toggleToolbar();
//This will show the toolbar, equivalent to sambaFrame.showToolbar();
sambaFrame.toggleToolbar(true);
//This will hide the toolbar, equivalent to sambaFrame.hideToolbar();
sambaFrame.toggleToolbar(false);Last updated