Bookmark.Deselected 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.
public:
event Microsoft::Office::Tools::Word::SelectionEventHandler ^ Deselected;
event Microsoft.Office.Tools.Word.SelectionEventHandler Deselected;
member this.Deselected : Microsoft.Office.Tools.Word.SelectionEventHandler
Event Deselected As SelectionEventHandler
Event Type
Examples
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.
This example is for a document-level customization.
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");
}
WithEvents BookmarkDeselect As Microsoft.Office.Tools.Word.Bookmark
Private Sub BookmarkDeselected()
Me.Paragraphs(1).Range.InsertParagraphBefore()
BookmarkDeselect = Me.Controls.AddBookmark( _
Me.Paragraphs(1).Range, "BookmarkDeselect")
BookmarkDeselect.Text = "This is a sample bookmark."
End Sub
Private Sub BookmarkDeselect_Deselected(ByVal sender As Object, _
ByVal e As Microsoft.Office.Tools.Word.SelectionEventArgs) _
Handles BookmarkDeselect.Deselected
MessageBox.Show("The selection has moved outside of the bookmark")
End Sub
Remarks
This event is raised only when the Bookmark control has focus, and then focus is transferred away from the Bookmark control.