Partilhar via


Evento XmlMappedRange.BeforeRightClick (sistema de 2007)

Ocorre quando um XmlMappedRange controle é clicado com o botão direito do mouse, antes da ação padrão de clicar com o botão direito do mouse.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v9.0 (em Microsoft.Office.Tools.Excel.v9.0.dll)

Sintaxe

Public Event BeforeRightClick As DocEvents_BeforeRightClickEventHandler

Dim instance As XmlMappedRange
Dim handler As DocEvents_BeforeRightClickEventHandler

AddHandler instance.BeforeRightClick, handler
public event DocEvents_BeforeRightClickEventHandler BeforeRightClick

Exemplos

O código a seguir demonstra um manipulador para o BeforeRightClick evento que cancela a ação de clicar com o botão direito do mouse em um XmlMappedRange. O manipulador de eventos informa o usuário clicar com o botão direito do mouse não permitido para o XmlMappedRangee, em seguida, define o Cancel parâmetro das DocEvents_BeforeRightClickEventHandler manipulador de eventos para true para que o Microsoft Office Excel cancela a ação de clique com o botão direito do mouse. Este exemplo de código assume que a planilha corrente contém uma XmlMappedRange chamada CustomerLastNameCell.

Sub CustomerLastNameCell_BeforeRightClick(ByVal Target As Excel.Range, _
    ByRef Cancel As Boolean) Handles CustomerLastNameCell.BeforeRightClick
    MsgBox("Right-clicking in this range is not allowed.")
    Cancel = True
End Sub
private void XmlMappedRange_BeforeRightClick()
{
    this.CustomerLastNameCell.BeforeRightClick += 
        new Excel.DocEvents_BeforeRightClickEventHandler(
        CustomerLastNameCell_BeforeRightClick);
}

void CustomerLastNameCell_BeforeRightClick(Excel.Range Target, 
    ref bool Cancel)
{
    MessageBox.Show("Right-clicking in this range " +
        " is not allowed.");
    Cancel = true;
}

Permissões

Consulte também

Referência

XmlMappedRange Classe

Membros XmlMappedRange

Namespace Microsoft.Office.Tools.Excel