次の方法で共有


InkAnalyzer.ContextNodePropertiesUpdated イベント

InkAnalyzerContextNode の 1 つまたは複数のプロパティを更新した後に発生します。

名前空間 :  Microsoft.Ink
アセンブリ :  Microsoft.Ink.Analysis (Microsoft.Ink.Analysis.dll 内)

構文

'宣言
Public Event ContextNodePropertiesUpdated As ContextNodePropertiesUpdatedEventHandler
'使用
Dim instance As InkAnalyzer
Dim handler As ContextNodePropertiesUpdatedEventHandler

AddHandler instance.ContextNodePropertiesUpdated, handler
public event ContextNodePropertiesUpdatedEventHandler ContextNodePropertiesUpdated
public:
 event ContextNodePropertiesUpdatedEventHandler^ ContextNodePropertiesUpdated {
    void add (ContextNodePropertiesUpdatedEventHandler^ value);
    void remove (ContextNodePropertiesUpdatedEventHandler^ value);
}
/** @event */
public void add_ContextNodePropertiesUpdated (ContextNodePropertiesUpdatedEventHandler value)
/** @event */
public void remove_ContextNodePropertiesUpdated (ContextNodePropertiesUpdatedEventHandler value)
JScript では、イベントは使用できません。

解説

このイベントは、アプリケーションが InkAnalyzer のデータ構造と同期されている独自のデータ構造を保持している場合に使用します。このイベントは、インク分析の調整段階で、または ContextNode のプロパティを変更する InkAnalyzer メソッドへの応答として発生します。

アプリケーション データと InkAnalyzer の同期の詳細については、「Data Proxy with Ink Analysis」を参照してください。

この例では、データ プロキシ イベント ハンドラを InkAnalyzer、theInkAnalyzer にアタッチする AttachDataProxyEventHandlers メソッドを定義します。

Private Sub AttachDataProxyEventHandlers() 
    ' If the document model supports on demand data proxy, then add an
    ' event handler for the PopulateContextNode event. This event is raised
    ' when the InkAnalyzer accesses a partially populated ContextNode created
    ' by the document model.
    If Me.theDocumentModel.SupportsOnDemandDataProxy Then
        AddHandler Me.theInkAnalyzer.PopulateContextNode, AddressOf Me.PopulateContextNode
    End If

    ' Add the other data proxy related event handlers. These events are raised
    ' by the InkAnalyzer to communicate ink analysis results to the document model.
    AddHandler Me.theInkAnalyzer.ContextNodeCreated, AddressOf Me.AddContextNode
    AddHandler Me.theInkAnalyzer.ContextNodeDeleting, AddressOf Me.RemoveContextNode
    AddHandler Me.theInkAnalyzer.ContextNodeLinkAdding, AddressOf Me.AddContextNodeLink
    AddHandler Me.theInkAnalyzer.ContextNodeLinkDeleting, AddressOf Me.RemoveContextNodeLink
    AddHandler Me.theInkAnalyzer.ContextNodeMovingToPosition, AddressOf Me.MoveContextNodeToPosition
    AddHandler Me.theInkAnalyzer.ContextNodePropertiesUpdated, AddressOf Me.UpdateContextNodeProperties
    AddHandler Me.theInkAnalyzer.ContextNodeReparenting, AddressOf Me.ReparentContextNode
    AddHandler Me.theInkAnalyzer.InkAnalyzerStateChanging, AddressOf Me.InkAnalyzer_StateChanging
    AddHandler Me.theInkAnalyzer.StrokesReparented, AddressOf Me.ReparentStroke
    AddHandler Me.theInkAnalyzer.IntermediateResultsUpdated, AddressOf Me.ResultsAvailable
    AddHandler Me.theInkAnalyzer.ResultsUpdated, AddressOf Me.ResultsAvailable

End Sub 'AttachDataProxyEventHandlers
        private void AttachDataProxyEventHandlers()
        {
            // If the document model supports on demand data proxy, then add an
            // event handler for the PopulateContextNode event. This event is raised
            // when the InkAnalyzer accesses a partially populated ContextNode created
            // by the document model.
            if (this.theDocumentModel.SupportsOnDemandDataProxy)
            {
                this.theInkAnalyzer.PopulateContextNode +=
                    new Microsoft.Ink.PopulateContextNodeEventHandler(
                        this.PopulateContextNode);
            }

            // Add the other data proxy related event handlers. These events are raised
            // by the InkAnalyzer to communicate ink analysis results to the document model.
            this.theInkAnalyzer.ContextNodeCreated +=
                new Microsoft.Ink.ContextNodeCreatedEventHandler(
                    this.AddContextNode);
            this.theInkAnalyzer.ContextNodeDeleting +=
                new Microsoft.Ink.ContextNodeDeletingEventHandler(
                    this.RemoveContextNode);
            this.theInkAnalyzer.ContextNodeLinkAdding +=
                new Microsoft.Ink.ContextNodeLinkAddingEventHandler(
                    this.AddContextNodeLink);
            this.theInkAnalyzer.ContextNodeLinkDeleting +=
                new Microsoft.Ink.ContextNodeLinkDeletingEventHandler(
                    this.RemoveContextNodeLink);
            this.theInkAnalyzer.ContextNodeMovingToPosition +=
                new Microsoft.Ink.ContextNodeMovingToPositionEventHandler(
                    this.MoveContextNodeToPosition);
            this.theInkAnalyzer.ContextNodePropertiesUpdated +=
                new Microsoft.Ink.ContextNodePropertiesUpdatedEventHandler(
                    this.UpdateContextNodeProperties);
            this.theInkAnalyzer.ContextNodeReparenting +=
                new Microsoft.Ink.ContextNodeReparentingEventHandler(
                    this.ReparentContextNode);
            this.theInkAnalyzer.InkAnalyzerStateChanging +=
                new Microsoft.Ink.InkAnalyzerStateChangingEventHandler(
                    this.InkAnalyzer_StateChanging);
            this.theInkAnalyzer.StrokesReparented +=
                new Microsoft.Ink.StrokesReparentedEventHandler(
                    this.ReparentStrokes);
            this.theInkAnalyzer.IntermediateResultsUpdated +=
                new Microsoft.Ink.ResultsUpdatedEventHandler(
                    this.ResultsAvailable);
            this.theInkAnalyzer.ResultsUpdated +=
                new Microsoft.Ink.ResultsUpdatedEventHandler(
                    this.ResultsAvailable);
        }

次の例では、ContextNodePropertiesUpdated イベントを処理する UpdateContextNodeProperties メソッドを定義します。イベント情報は、ドキュメント モデル オブジェクト theDocumentModel に渡されます。

この例では、ドキュメント モデルを定義したり、ドキュメント モデルが渡された情報を処理する方法を示したりはしません。

'/ <summary>
'/ Handles the InkAnalyzer.ContextNodePropertiesUpdated event.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
Private Sub UpdateContextNodeProperties( _
    ByVal sender As Object, _
    ByVal e As Microsoft.Ink.ContextNodePropertiesUpdatedEventArgs)

    Me.theDocumentModel.UpdateNodeProperties(e.UpdatedNode)

End Sub 'UpdateContextNodeProperties

        /// <summary>
        /// Handles the InkAnalyzer.ContextNodePropertiesUpdated event.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The event data.</param>
        private void UpdateContextNodeProperties(
            object sender, Microsoft.Ink.ContextNodePropertiesUpdatedEventArgs e)
        {
            this.theDocumentModel.UpdateNodeProperties(e.UpdatedNode);
        }

プラットフォーム

Windows Vista

.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 3.0

参照

参照

InkAnalyzer クラス

InkAnalyzer メンバ

Microsoft.Ink 名前空間

InkAnalyzer.ContextNodeCreated

Microsoft.Ink.ContextNodePropertiesUpdatedEventArgs