DocumentBase.ActivateEvent Event

Definition

Occurs when the document becomes the active window.

public:
 event Microsoft::Office::Tools::Word::WindowEventHandler ^ ActivateEvent;
public event Microsoft.Office.Tools.Word.WindowEventHandler ActivateEvent;
member this.ActivateEvent : Microsoft.Office.Tools.Word.WindowEventHandler 
Public Custom Event ActivateEvent As WindowEventHandler 

Event Type

Examples

The following code snippet displays a message when the document is activated. To use this example, run it from the ThisDocument class in a document-level project.

private void DocumentActivateEvent()
{
    this.ActivateEvent += new Microsoft.Office.Tools.Word.WindowEventHandler(ThisDocument_ActivateEvent);
}

void ThisDocument_ActivateEvent(object sender, Microsoft.Office.Tools.Word.WindowEventArgs e)
{
    MessageBox.Show("The document has been activated");
}
Private Sub DocumentActivateEvent()
    AddHandler Me.ActivateEvent, AddressOf ThisDocument_ActivateEvent
End Sub

Private Sub ThisDocument_ActivateEvent(ByVal sender As Object, ByVal e As Microsoft.Office.Tools.Word.WindowEventArgs)
    MessageBox.Show("The document has been activated")
End Sub

Remarks

The ActivateEvent event occurs only when you move the focus within an application. Moving the focus to or from an object in another application does not trigger the event.

Applies to