Evento Action.Click (sistema de 2007)

Ocorre quando a ação no marca SMART menu é clicado.

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

Sintaxe

Public Event Click As ActionClickEventHandler

Dim instance As Action
Dim handler As ActionClickEventHandler

AddHandler instance.Click, handler
public event ActionClickEventHandler Click

Comentários

Para obter mais informações sobre tratamento eventos, consulte Consumindo Eventos.

Exemplos

O exemplo de código a seguir demonstra um manipulador para o Click evento. O manipulador de eventos exibe a posição inicial e participante da reconhecido marca inteligente termo.Este exemplo de código é parte de um exemplo maior fornecido para a classe Action.

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

PrivateSub DisplayAddress_Click(ByVal sender AsObject, _
    ByVal e As Microsoft.Office.Tools.Word.ActionEventArgs) _
    Handles DisplayAddress.Click

    Dim termStart AsInteger = e.Range.Start
    Dim termEnd AsInteger = e.Range.End
    MsgBox("The recognized text '" & e.Text & _
            "' begins at position " & termStart & _
            " and ends at position " & termEnd)
EndSub
void displayAddress_Click(object sender,
    Microsoft.Office.Tools.Word.ActionEventArgs e)
{
    int termStart = e.Range.Start;
    int termEnd = e.Range.End;
    System.Windows.Forms.MessageBox.Show("The recognized text '" + e.Text +
        "' begins at position " + termStart.ToString() +
        " and ends at position " + termEnd.ToString());
}

Permissões

Consulte também

Referência

Action Classe

Membros Action

Namespace Microsoft.Office.Tools.Word