Application.ActiveWindow Method

Outlook Developer Reference

Returns an object representing the topmost Microsoft Outlook window on the desktop, either an Explorer or an Inspector object.

Syntax

expression.ActiveWindow

expression   A variable that represents an Application object.

Return Value
An Object that represents the topmost Microsoft Outlook window on the desktop. Returns Nothing if no Outlook explorer or inspector is open.

Example

This Microsoft Visual Basic/Visual Basic for Applications (VBA) example minimizes the topmost Outlook window if it is an inspector window.

Visual Basic for Applications
  Sub MinimizeActiveWindow()
    If TypeName(Application.ActiveWindow) = "Inspector" Then
        Application.ActiveWindow.WindowState = olMinimized
    End If
End Sub

See Also