DocumentBase.ActiveWindow Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Window that represents the active window.
public Microsoft.Office.Interop.Word.Window ActiveWindow { get; }
Property Value
A Window that represents the active window.
Examples
The following code example splits the active window. To use this example, run it from the ThisDocument class in a document-level project.
private void DocumentActiveWindow()
{
this.ActiveWindow.Split = true;
}
Private Sub DocumentActiveWindow()
Me.ActiveWindow.Split = True
End Sub
Remarks
The active window is the window that currently has focus.
If there are no windows open, an exception is thrown.