StatusText (Property)

Applies To:

Application object

Description:

Provides the status text displayed on the status bar.

Note:

Do not use Application.ShowStatusBar and Application.StatusText in Interactive Reporting documents to be deployed in the EPM Workspace.

Action:

Read-write, String

Example:

This example shows how to hide or only show various user interface elements in Interactive Reporting based on the application running. The status text indicates if the Catalog and Section Title Bar are shown based on the application.

Application.ShowStatusBar = true
 
if (Application.Type == bqAppTypeDesktopClient)
{
 ActiveDocument.ShowCatalog = true
 ActiveDocument.ShowSectionTitleBar = true
 Application.StatusText = "Catalog and Section Title Bar are shown"
}
else 
{
//Save space in plugin by hiding by various user interface elements
   ActiveDocument.ShowCatalog = false 
   ActiveDocument.ShowSectionTitleBar = false 
   Application.StatusText = "Catalog and Section Title Bar are not shown"
}