SelectionEventArgs 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 data for the SelectionChange, Selected, and Deselected events of a Bookmark control.
public interface class SelectionEventArgs
[System.Runtime.InteropServices.Guid("1669c37b-2ce5-4924-ac10-2e50a5b95901")]
public interface SelectionEventArgs
[<System.Runtime.InteropServices.Guid("1669c37b-2ce5-4924-ac10-2e50a5b95901")>]
type SelectionEventArgs = interface
Public Interface SelectionEventArgs
- Attributes
Examples
The following code example adds a Bookmark control with text to the document and then creates a Selected event handler. A message box is displayed when you move the cursor into the bookmark.
This example is for a document-level customization.
Microsoft.Office.Tools.Word.Bookmark bookmark4;
private void BookmarkSelected()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
bookmark4 = this.Controls.AddBookmark(this.Paragraphs[1]
.Range, "bookmark4");
bookmark4.Text = "This is a sample bookmark.";
bookmark4.Selected += new Microsoft.Office.Tools
.Word.SelectionEventHandler(bookmark4_Selected);
}
void bookmark4_Selected(object sender, Microsoft.Office.Tools
.Word.SelectionEventArgs e)
{
MessageBox.Show("The selection has moved to bookmark1.");
}
WithEvents Bookmark4 As Microsoft.Office.Tools.Word.Bookmark
Private Sub BookmarkSelected()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Bookmark4 = Me.Controls.AddBookmark(Me.Paragraphs(1).Range, _
"Bookmark4")
Bookmark4.Text = "This is a sample bookmark."
End Sub
Private Sub Bookmark4_Selected(ByVal sender As Object, _
ByVal e As Microsoft.Office.Tools.Word.SelectionEventArgs) _
Handles Bookmark4.Selected
MessageBox.Show("The selection has moved to Bookmark1.")
End Sub
Properties
Selection |
Gets a Selection that represents the text that was selected. |