Application.WindowSelectionChange Event

Word Developer Reference

Occurs when the selection changes in the active document window.

Syntax

expression.Private Sub object_WindowSelectionChange(ByVal Sel As Selection)

expression   A variable that represents an Application object that has been declared with events in a class module. For more information about using events with the Application object, see Using Events with the Application Object.

Parameters

Name Required/Optional Data Type Description
Sel Required Selection The text selected. If no text is selected, the Sel parameter returns either nothing or the first character to the right of the insertion point.

Example

This example applies bold formatting to the new selection. This code must be placed in a class module, and an instance of the class must be correctly initialized to see this example work; see Using Events with the Application Object for directions on how to accomplish this.

Visual Basic for Applications
  Public WithEvents appWord as Word.Application

Private Sub appWord_WindowSelectionChange _ (ByVal Sel As Selection) Sel.Font.Bold = True End Sub

See Also