ShowCatalog (Property)

Applies To:

Document object, PluginDocument object

Description:

Displays the Section/Catalog pane. This property is the equivalent to selecting/deselecting the Section/Catalog item from the View menu.

Note:

Do not use ActiveDocument.ShowCatalog 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")
{
   ActiveDocument.ShowCatalog = true
   ActiveDocument.ShowMenuBar = true
}
else
{
//Save space in plugin by hiding catalog and turning off menu bar
   ActiveDocument.ShowCatalog = false
   Application.ShowMenuBar = false
}