Partager via


TextInputPanel.TextInserting, événement

Mise à jour : November 2007

Se produit lorsque le Panneau de saisie Tablet PC est sur le point d'insérer du texte dans le contrôle avec le focus d'entrée.

Espace de noms :  Microsoft.Ink.TextInput
Assembly :  Microsoft.Ink (dans Microsoft.Ink.dll)

Syntaxe

'Déclaration
Public Event TextInserting As EventHandler(Of TextInsertionEventArgs)
'Utilisation
Dim instance As TextInputPanel
Dim handler As EventHandler(Of TextInsertionEventArgs)

AddHandler instance.TextInserting, handler
public event EventHandler<TextInsertionEventArgs> TextInserting
public:
 event EventHandler<TextInsertionEventArgs^>^ TextInserting {
    void add (EventHandler<TextInsertionEventArgs^>^ value);
    void remove (EventHandler<TextInsertionEventArgs^>^ value);
}
/** @event */
public void add_TextInserting (EventHandler<TextInsertionEventArgs> value)
/** @event */
public void remove_TextInserting (EventHandler<TextInsertionEventArgs> value)
JScript ne prend pas en charge les événements.

Exemples

Les deux exemples suivants montrent comment utiliser TextInserting.

Le premier exemple attache un gestionnaire d'événements TextInsertingtip_TextInserting à l'objet TextInputPanel, tip.

AddHandler tip.TextInserting, AddressOf tip_TextInserting
tip.TextInserting += new EventHandler<TextInsertionEventArgs>(tip_TextInserting);

Le deuxième exemple définit un gestionnaire d'événements pour l'événement TextInserting où les valeurs de chaîne qui représentent les objets RecognitionResult supérieurs pour les collections Strokes contenues dans un tableau de Ink représentant l'insertion de texte du Panneau de saisie sont utilisées pour définir la propriété TextBox.Text (page pouvant être en anglais) d'une TextBox (page pouvant être en anglais), outputTextBox.

Sub tip_TextInserting(ByVal sender As Object, ByVal e As TextInsertionEventArgs)
    outputTextBox.Text += "Inserting Text: " + Environment.NewLine
    Dim inkArray As Microsoft.Ink.Ink() = e.GetInk()
    Dim ink As Microsoft.Ink.Ink
    For Each ink In inkArray
        outputTextBox.Text += ink.Strokes.ToString()
    Next ink
    outputTextBox.Text += Environment.NewLine
End Sub
void tip_TextInserting(object sender, TextInsertionEventArgs e)
{
    outputTextBox.Text += "Inserting Text: " + Environment.NewLine;
    Microsoft.Ink.Ink[] inkArray = e.GetInk();
    foreach (Microsoft.Ink.Ink ink in inkArray)
    {
        outputTextBox.Text += ink.Strokes.ToString();
    }
    outputTextBox.Text += Environment.NewLine;
}

Plateformes

Windows Vista, Windows XP SP2, Windows Server 2003

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

TextInputPanel, classe

Membres TextInputPanel

Microsoft.Ink.TextInput, espace de noms