Bookmark.Deselected Event
Visual Studio 2005
Occurs when selection moves from the Bookmark control to an area outside of the Bookmark control.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word (in microsoft.office.tools.word.dll)
Assembly: Microsoft.Office.Tools.Word (in microsoft.office.tools.word.dll)
The following code example adds a Bookmark control with text to the first paragraph of the document and creates a Deselected event handler. A message box is displayed when the user moves the cursor from inside the bookmark to an area outside of the bookmark.
Microsoft.Office.Tools.Word.Bookmark bookmarkDeselect; private void BookmarkDeselected() { this.Paragraphs[1].Range.InsertParagraphBefore(); bookmarkDeselect = this.Controls.AddBookmark(this.Paragraphs[1] .Range, "bookmarkDeselect"); bookmarkDeselect.Text = "This is a sample bookmark."; bookmarkDeselect.Deselected +=new Microsoft.Office.Tools.Word.SelectionEventHandler(bookmarkDeselect_Deselected); } void bookmarkDeselect_Deselected(object sender, Microsoft.Office.Tools.Word.SelectionEventArgs e) { MessageBox.Show("The selection has moved outside of the bookmark"); }