WindowState (Property)

Applies To:

Application (Interactive Reporting Studio)

Description:

Returns or sets the display of the main application window. Using the BqWindowState constant, the window can be minimized, maximized or restored back to a default state.

Note:

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

Action:

Read-write, BqWindowState constant

Constants:

The BqWindowState constant consists of these values:

Example:

This example checks if Interactive Reporting is maximized, and changes its state based on the result.

if( Application.WindowState != bqWindowStateMaximized)
       Application.WindowState = bqWindowStateMaximized
else
     Application.WindowState = bqWindowStateNormal