WindowStateChanged event
Fires when the visibility state of a content window, such as the browser window or a tab, changes.
Syntax
HTML Attribute | <element WindowStateChanged = "handler(event)"> |
attachEvent Method | object.attachEvent("WindowStateChanged", handler) |
Event information
Synchronous | No |
Bubbles | No |
Cancelable | No |
Event handler parameters
dwFlags [in]
Type: Long
The flags indicating the current window state.
OLECMDIDF_WINDOWSTATE_USERVISIBLE (1)
The content window is visible to the user.
OLECMDIDF_WINDOWSTATE_ENABLED (2)
The content window is enabled.
dwValidFlagsMask [in]
Type: Long
The flags indicating which flags in the dwFlags parameter value have been initialized.
OLECMDIDF_WINDOWSTATE_USERVISIBLE (1)
The OLECMDIDF_WINDOWSTATE_USERVISIBLE flag can be checked.
OLECMDIDF_WINDOWSTATE_ENABLED (2)
The OLECMDIDF_WINDOWSTATE_ENABLED flag can be checked.
Remarks
WindowStateChanged is available only in Windows XP Service Pack 2 (SP2) or later.
The WindowStateChanged event is raised when the state of a content window, such as the browser window or a tab, might have changed. The following actions raise this event.
- The browser window is minimized or restored.
- An active tab becomes inactive.
- An inactive tab becomes active.
- The browser window is enabled or disabled due to a modal dialog box.
A content window is visible to the user when it is displayed to the user and can be interacted with. If tabbed browsing is enabled, the active tab (the one with focus) contains the content window. Background tabs are inactive. When tabbed browsing is disabled, the browser window displays the content window. When the browser window is minimized, the content window is not visible. This event can be used to minimize CPU usage and prolong battery life by reducing unnecessary updates to inactive windows.
Note This event can be raised even if the state of the parameter flag values have not changed.