Bookmark.BeforeDoubleClick 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 a Bookmark control is double-clicked, before the default double-click action.
public:
event Microsoft::Office::Tools::Word::ClickEventHandler ^ BeforeDoubleClick;
event Microsoft.Office.Tools.Word.ClickEventHandler BeforeDoubleClick;
member this.BeforeDoubleClick : Microsoft.Office.Tools.Word.ClickEventHandler
Event BeforeDoubleClick As ClickEventHandler
Event Type
Examples
The following code example adds a Bookmark control with the text to the document and then creates a BeforeDoubleClick event handler. The text within the bookmark is selected when the Bookmark control is double-clicked.
This example is for a document-level customization.
Microsoft.Office.Tools.Word.Bookmark bookmark2;
private void BookmarkBeforeDoubleClick()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
bookmark2 = this.Controls.AddBookmark(this.Paragraphs[1]
.Range, "bookmark2");
bookmark2.Text = "This is a sample bookmark.";
bookmark2.BeforeDoubleClick += new Microsoft.Office.Tools
.Word.ClickEventHandler(bookmark2_BeforeDoubleClick);
}
void bookmark2_BeforeDoubleClick(object sender,
Microsoft.Office.Tools.Word.ClickEventArgs e)
{
bookmark2.Select();
e.Cancel = true;
}
WithEvents Bookmark2 As Microsoft.Office.Tools.Word.Bookmark
Private Sub BookmarkBeforeDoubleClick()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Bookmark2 = Me.Controls.AddBookmark(Me.Paragraphs(1).Range, _
"Bookmark2")
Bookmark2.Text = "This is a sample bookmark."
End Sub
Private Sub Bookmark2_BeforeDoubleClick(ByVal sender As Object, _
ByVal e As Microsoft.Office.Tools.Word.ClickEventArgs) _
Handles Bookmark2.BeforeDoubleClick
Bookmark2.Select()
e.Cancel = True
End Sub
Remarks
Double-clicking overlapping Bookmark controls raises the event on each of the bookmarks that overlap.