WindowEventArgs Interface
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.
Provides information for the ActivateEvent, Deactivate, and WindowSize events.
public interface class WindowEventArgs
[System.Runtime.InteropServices.Guid("767d9ec0-c72c-4f66-892b-be4a4b20eba3")]
public interface WindowEventArgs
[<System.Runtime.InteropServices.Guid("767d9ec0-c72c-4f66-892b-be4a4b20eba3")>]
type WindowEventArgs = interface
Public Interface WindowEventArgs
- Attributes
Examples
The following code example creates an event handler for the WindowSize event. The event handler displays in the window caption the number of times that the window has been resized.
This example is for a document-level customization.
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.";
}
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
Properties
Window |
Gets the window being acted upon by the ActivateEvent, Deactivate, and WindowSize methods. |