DocumentBase.SelectionChange Event
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.
Occurs when the selection changes in the document window.
public:
event Microsoft::Office::Tools::Word::SelectionEventHandler ^ SelectionChange;
public event Microsoft.Office.Tools.Word.SelectionEventHandler SelectionChange;
member this.SelectionChange : Microsoft.Office.Tools.Word.SelectionEventHandler
Public Custom Event SelectionChange As SelectionEventHandler
Event Type
Examples
The following code example displays a message that indicates that the selection has changed whenever you change the selection within the document. To use this example, run it from the ThisDocument
class in a document-level project.
private void DocumentSelectionChange()
{
this.SelectionChange += new Microsoft.Office.Tools.Word.SelectionEventHandler(ThisDocument_SelectionChange);
}
void ThisDocument_SelectionChange(object sender, Microsoft.Office.Tools.Word.SelectionEventArgs e)
{
MessageBox.Show("The selection in the document has changed.");
}
Private Sub DocumentSelectionChange()
AddHandler Me.SelectionChange, AddressOf ThisDocument_SelectionChange
End Sub
Private Sub ThisDocument_SelectionChange(ByVal sender As Object, ByVal e As Microsoft.Office. _
Tools.Word.SelectionEventArgs)
MessageBox.Show("The selection in the document has changed.")
End Sub