Document object, PluginDocument object
Displays a section specific title bar. Changing this property is equivalent to showing/hiding the section title bar from the View menu.
Do not use ActiveDocument.ShowSectionTitleBar inInteractive Reporting document file (.bqy) to be deployed in the EPM Workspace. |
This example shows how to hide and show various user interface elements inInteractive Reporting based on the application you are running:
if (Application.Name == "BrioQuery Designer")
{
ActiveDocument.ShowCatalog = true
ActiveDocument.ShowSectionTitleBar = true
Application.ShowStatusBar = true
Application.ShowMenuBar = true
}
else
{
//Save space in plugin by turning off various user interface elements
ActiveDocument.ShowCatalog = false
ActiveDocument.ShowSectionTitleBar = false
Application.ShowStatusBar = false
Application.ShowMenuBar = false
}