Share via


WindowEventArgs.Window Property (2007 System)

Gets the window being acted upon by the ActivateEvent, Deactivate, and WindowSize methods.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)

Syntax

'Declaration
Public ReadOnly Property Window As Window
'Usage
Dim instance As WindowEventArgs 
Dim value As Window 

value = instance.Window
public Window Window { get; }
public:
property Window^ Window {
    Window^ get ();
}
public function get Window () : Window

Property Value

Type: Window
The window being acted upon by the ActivateEvent, Deactivate, and WindowSize methods.

Examples

The following code example creates an event handler for the WindowSize event. The event handler uses the Window property to display in the window caption the number of times that the window has been resized.

This example is for a document-level customization.

Private resizeCount As Integer = 0
Private Sub DocumentWindowSize()
    AddHandler Me.WindowSize, AddressOf ThisDocument_WindowSize
End Sub 

Private Sub ThisDocument_WindowSize(ByVal sender As Object, ByVal e As Microsoft.Office.Tools.Word.WindowEventArgs)
    resizeCount += 1
    e.Window.Caption = "Window resized " & resizeCount.ToString() & " times." 
End Sub
int resizeCount = 0;
private void DocumentWindowSize()
{
    this.WindowSize +=
        new Microsoft.Office.Tools.Word.WindowEventHandler(
        ThisDocument_WindowSize);
}

void ThisDocument_WindowSize(object sender,
    Microsoft.Office.Tools.Word.WindowEventArgs e)
{
    resizeCount++;
    e.Window.Caption = "Window resized " +
        resizeCount.ToString() + " times.";
}

.NET Framework Security

See Also

Reference

WindowEventArgs Class

WindowEventArgs Members

Microsoft.Office.Tools.Word Namespace