Share via


Bookmark.BeforeDoubleClick Event

Definition

Occurs when a Bookmark control is double-clicked, before the default double-click action.

C#
event Microsoft.Office.Tools.Word.ClickEventHandler BeforeDoubleClick;

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.

C#
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;
}

Remarks

Double-clicking overlapping Bookmark controls raises the event on each of the bookmarks that overlap.

Applies to

Product Versions
Visual Studio Tools for Office 2017, 2019, 2022