Compartilhar via


Evento Action.Click

Ocorre quando a ação no menu de marca inteligente é clicada.

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

Sintaxe

'Declaração
Event Click As ActionClickEventHandler
event ActionClickEventHandler Click

Exemplos

O exemplo de código a seguir demonstra um manipulador para o Click de evento. O manipulador de eventos exibe o endereço da célula que contém o termo de reconhecido de marca inteligente ou uma expressão. Este exemplo de código é parte de um exemplo maior fornecido para a Action interface.

Este exemplo é para uma personalização em nível de documento.

Private Sub DisplayAddress_Click(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Excel.ActionEventArgs) _
    Handles DisplayAddress.Click

    Dim smartTagAddress As String = e.Range.Address( _
        ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
    MsgBox("The recognized text '" & e.Text & _
            "' is at range " & smartTagAddress)
End Sub
void DisplayAddress_Click(object sender, 
    Microsoft.Office.Tools.Excel.ActionEventArgs e)
{
    string smartTagAddress = e.Range.get_Address(missing,
        missing, Excel.XlReferenceStyle.xlA1, missing, missing);
    System.Windows.Forms.MessageBox.Show("The recognized text '" + e.Text +
        "' is at range " + smartTagAddress);
}

Segurança do .NET Framework

Consulte também

Referência

Action Interface

Namespace Microsoft.Office.Tools.Excel