Enables the display of the Status bar. Changing this property is equivalent to showing/hiding the Status bar from the View menu.
Do not use Application.ShowStatusBar and Application.ShowStatusText in Interactive Reporting documents to be deployed in the EPM Workspace. |
This example shows how to hide and show various user interface elements in Interactive Reporting based on the application being executed:
if (Application.Name == "BrioQuery Designer") { ActiveDocument.ShowCatalog = true ActiveDocument.ShowSectionTitleBar = true Application.ShowStatusBar = true Application.ShowMenuBar = true } else { //Save space in plugin by hiding by various user interface elements ActiveDocument.ShowCatalog = false ActiveDocument.ShowSectionTitleBar = false Application.ShowStatusBar = false Application.ShowMenuBar = false }