Partager via


Action.Click, événement (System 2007)

Mise à jour : novembre 2007

Se produit lorsque l'utilisateur clique sur l'action dans le menu de la balise active.

Espace de noms :  Microsoft.Office.Tools.Word
Assembly :  Microsoft.Office.Tools.Word.v9.0 (dans Microsoft.Office.Tools.Word.v9.0.dll)

Syntaxe

Public Event Click As ActionClickEventHandler

Dim instance As Action
Dim handler As ActionClickEventHandler

AddHandler instance.Click, handler
public event ActionClickEventHandler Click

Notes

Pour plus d'informations sur la gestion des événements, consultez Consommation d'événements.

Exemples

L'exemple de code suivant illustre un gestionnaire pour l'événement Click. Le gestionnaire d'événements affiche la position de début et de fin du terme de balise active reconnu. Cet exemple de code fait partie d'un exemple plus développé fourni pour la classe Action.

Cet exemple illustre une personnalisation au niveau du document.

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

    Dim termStart As Integer = e.Range.Start
    Dim termEnd As Integer = e.Range.End
    MsgBox("The recognized text '" & e.Text & _
            "' begins at position " & termStart & _
            " and ends at position " & termEnd)
End Sub
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());
}

Autorisations

Voir aussi

Référence

Action, classe

Membres Action

Microsoft.Office.Tools.Word, espace de noms