DocumentBase.BeforeDoubleClick Event

Definition

Occurs when the editing area of the document window is double-clicked, before the default double-click action.

public:
 event Microsoft::Office::Tools::Word::ClickEventHandler ^ BeforeDoubleClick;
public event Microsoft.Office.Tools.Word.ClickEventHandler BeforeDoubleClick;
member this.BeforeDoubleClick : Microsoft.Office.Tools.Word.ClickEventHandler 
Public Custom Event BeforeDoubleClick As ClickEventHandler 

Event Type

Examples

The following code example displays a message when you double-click the document. To use this example, run it from the ThisDocument class in a document-level project.

private void DocumentBeforeDoubleClick()
{
    this.BeforeDoubleClick += new Microsoft.Office.Tools.Word.ClickEventHandler(ThisDocument_BeforeDoubleClick);
}

void ThisDocument_BeforeDoubleClick(object sender, Microsoft.Office.Tools.Word.ClickEventArgs e)
{
    MessageBox.Show(this.Name + " was double-clicked.");
}
Private Sub DocumentBeforeDoubleClick()
    AddHandler Me.BeforeDoubleClick, AddressOf ThisDocument_BeforeDoubleClick
End Sub

Private Sub ThisDocument_BeforeDoubleClick(ByVal sender As Object, ByVal e As Microsoft.Office.Tools.Word.ClickEventArgs)
    MessageBox.Show(Me.Name & " was double-clicked.")
End Sub

Remarks

To prevent the default double-click action from occurring, set the Cancel argument of the provided CancelEventArgs object to true.

Applies to