DocumentBase.Deactivate Event
Occurs when the active document window loses focus.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntax
'Declaration
Public Event Deactivate As WindowEventHandler
public event WindowEventHandler Deactivate
Remarks
The Deactivate event does not occur when you unload the document.
Examples
The following code example displays a message when the document is deactivated. To use this example, run it from the ThisDocument class in a document-level project.
Private Sub DocumentDeactivate()
AddHandler Me.Deactivate, AddressOf ThisDocument_Deactivate
End Sub
Private Sub ThisDocument_Deactivate(ByVal sender As Object, ByVal e As Microsoft.Office.Tools.Word.WindowEventArgs)
MessageBox.Show("The document has been deactivated")
End Sub
private void DocumentDeactivate()
{
this.Deactivate += new Microsoft.Office.Tools.Word.WindowEventHandler(ThisDocument_Deactivate);
}
void ThisDocument_Deactivate(object sender, Microsoft.Office.Tools.Word.WindowEventArgs e)
{
MessageBox.Show ("The document has been deactivated");
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.