ShowMenuBar (Property)

Applies To:

Application object

Description:

Displays the Application Menu toolbar. The default value for this property is true.

Note:

Do not use Application.ShowMenuBar object in Interactive Reporting documents to be deployed in the EPM Workspace.

Action:

Read-write, Boolean

Example:

This example shows how to hide and show various user interface elements in Interactive Reporting based on the application they are running:

if (Application.Name == "BrioQuery Designer")
{
   ActiveDocument.ShowCatalog = true
 Application.ShowMenuBar = true
}
else
{
//Save space in plugin by hiding catalog and turning off menu bar
   ActiveDocument.ShowCatalog = false
   Application.ShowMenuBar = false
}