Freigeben über


PopulateContextNodeEventArgs.NodeToPopulate-Eigenschaft

Ruft den Kontextknoten ab, auf den InkAnalyzer zugreift.

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

Syntax

'Declaration
Public ReadOnly Property NodeToPopulate As ContextNode
'Usage
Dim instance As PopulateContextNodeEventArgs
Dim value As ContextNode

value = instance.NodeToPopulate
public ContextNode NodeToPopulate { get; }
public:
property ContextNode^ NodeToPopulate {
    ContextNode^ get ();
}
/** @property */
public ContextNode get_NodeToPopulate()
public function get NodeToPopulate () : ContextNode

Eigenschaftenwert

Typ: Microsoft.Ink.ContextNode
Der Kontextknoten, auf den InkAnalyzer zugreift.

Beispiele

Im folgenden Beispiel wird die PopulateContextNode-Methode definiert, die das PopulateContextNode-Ereignis behandelt. Die Ereignisinformationen werden an das Dokumentmodellobjekt theDocumentModel übergeben.

Dieses Beispiel liefert nicht die Definition des Dokumentmodells und veranschaulicht nicht, wie die übergebenen Informationen verarbeitet werden.

'/ <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);
        }

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

PopulateContextNodeEventArgs-Klasse

PopulateContextNodeEventArgs-Member

Microsoft.Ink-Namespace