Share via


TextInputPanel.TextInserting Event

Occurs when the Tablet PC Input Panel is about to insert text into the control with input focus.

Namespace:  Microsoft.Ink.TextInput
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Event TextInserting As EventHandler(Of TextInsertionEventArgs)
'Usage
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);
}
JScript does not support events.

Examples

The following two examples show how to use TextInserting.

The first example attaches an TextInserting event handler, tip_TextInserting, to the TextInputPanel object, tip.

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

The second example defines an event handler for the TextInserting event where the string values that represent the top RecognitionResult objects for the Strokes collections contained in an array of Ink representing the Input Panel text insertion are used to set the TextBox.Text property of a TextBox, 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;
}

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

TextInputPanel Class

TextInputPanel Members

Microsoft.Ink.TextInput Namespace