This topic has not yet been rated - Rate this topic

DocumentBase.BeforeRightClick Event

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

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
public event ClickEventHandler BeforeRightClick

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

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

private void DocumentBeforeRightClick()
{
    this.BeforeRightClick += new Microsoft.Office.Tools.Word.ClickEventHandler(ThisDocument_BeforeRightClick);
}

void ThisDocument_BeforeRightClick(object sender, Microsoft.Office.Tools.Word.ClickEventArgs e)
{
    MessageBox.Show(this.Name + " was right-clicked.");
    e.Cancel = true;
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.