TextInputPanel.TextInserted イベント
入力フォーカスのあるコントロールに Tablet PC 入力パネルからテキストが挿入されたときに発生します。
名前空間 : Microsoft.Ink.TextInput
アセンブリ : Microsoft.Ink (Microsoft.Ink.dll 内)
構文
'宣言
Public Event TextInserted As EventHandler(Of TextInsertionEventArgs)
'使用
Dim instance As TextInputPanel
Dim handler As EventHandler(Of TextInsertionEventArgs)
AddHandler instance.TextInserted, handler
public event EventHandler<TextInsertionEventArgs> TextInserted
public:
event EventHandler<TextInsertionEventArgs^>^ TextInserted {
void add (EventHandler<TextInsertionEventArgs^>^ value);
void remove (EventHandler<TextInsertionEventArgs^>^ value);
}
/** @event */
public void add_TextInserted (EventHandler<TextInsertionEventArgs> value)
/** @event */
public void remove_TextInserted (EventHandler<TextInsertionEventArgs> value)
JScript では、イベントは使用できません。
例
次の 2 つの例は、TextInserted の使い方を示しています。
最初の例では、TextInserted イベント ハンドラ tip_TextInserted を TextInputPanel オブジェクト tip に結合しています。
AddHandler tip.TextInserted, AddressOf tip_TextInserted
tip.TextInserted += new EventHandler<TextInsertionEventArgs>(tip_TextInserted);
2 番目の例では、文字列値を使用して、TextBox、outputTextBox の TextBox.Text プロパティを設定する、TextInserted イベントのイベント ハンドラを定義しています。
Sub tip_TextInserted(ByVal sender As Object, ByVal e As TextInsertionEventArgs)
outputTextBox.Text += "Inserted 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_TextInserted(object sender, TextInsertionEventArgs e)
{
outputTextBox.Text += "Inserted 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;
}
プラットフォーム
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0