Share via


Document.ActiveWindow Property

Word Developer Reference

Returns a Window object that represents the active window (the window with the focus). Read-only.

Syntax

expression.ActiveWindow

expression   A variable that represents a Document object.

Remarks

If there are no windows open, using the ActiveWindow property generates an error occurs.

Example

This example displays the caption text for the active window.

Visual Basic for Applications
  Sub WindowCaption()
    MsgBox ActiveDocument.ActiveWindow.Caption
End Sub

This example opens a new window for the active window of the active document and then tiles all the windows.

Visual Basic for Applications
  Sub WindowTiled()
    Dim wndTileWindow As Window
    
    Set wndTileWindow = ActiveDocument.ActiveWindow.NewWindow
    Windows.Arrange ArrangeStyle:=wdTiled
End Sub

This example splits the first document window.

Visual Basic for Applications
  Sub WindowSplit()
    Documents(1).ActiveWindow.Split = True
End Sub

See Also