PopulateContextNodeEventArgs クラス
PopulateContextNode イベントにデータを提供します。
名前空間 : Microsoft.Ink
アセンブリ : Microsoft.Ink.Analysis (Microsoft.Ink.Analysis.dll 内)
構文
'宣言
Public Class PopulateContextNodeEventArgs _
Inherits EventArgs
'使用
Dim instance As PopulateContextNodeEventArgs
public class PopulateContextNodeEventArgs : EventArgs
public ref class PopulateContextNodeEventArgs : public EventArgs
public class PopulateContextNodeEventArgs extends EventArgs
public class PopulateContextNodeEventArgs extends EventArgs
解説
イベント処理の詳細については、「イベントの利用」を参照してください。
例
次の例では、PopulateContextNode イベントを処理する PopulateContextNode メソッドを定義します。イベント情報は、ドキュメント モデル オブジェクト theDocumentModel に渡されます。
この例では、ドキュメント モデルの定義は提供していません。また、ドキュメント モデルが、渡された情報を処理する方法も示していません。
'/ <summary>
'/ Handles the InkAnalyzer.PopulateContextNode event.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
'/ <remarks>
'/ This event handler fully populates a ContextNode from the document model.
'/ The InkAnalyzer calls this event handler when it accesses a partially
'/ populated ContextNode created by the document model.
'/ </remarks>
Private Sub PopulateContextNode( _
ByVal sender As Object, _
ByVal e As Microsoft.Ink.PopulateContextNodeEventArgs)
Me.theDocumentModel.PopulateNode(e.NodeToPopulate, _
CType(sender, Microsoft.Ink.InkAnalyzer))
End Sub 'PopulateContextNode
/// <summary>
/// Handles the InkAnalyzer.PopulateContextNode event.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
/// <remarks>
/// This event handler fully populates a ContextNode from the document model.
/// The InkAnalyzer calls this event handler when it accesses a partially
/// populated ContextNode created by the document model.
/// </remarks>
private void PopulateContextNode(
object sender, Microsoft.Ink.PopulateContextNodeEventArgs e)
{
this.theDocumentModel.PopulateNode(
e.NodeToPopulate, (Microsoft.Ink.InkAnalyzer)sender);
}
継承階層
System.Object
System.EventArgs
Microsoft.Ink.PopulateContextNodeEventArgs
スレッド セーフ
この型のすべてのパブリック static (Visual Basic では Shared) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
Windows Vista
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0