InkAnalyzer.RootNode, propriété
Mise à jour : November 2007
Obtient le ContextNode racine du InkAnalyzer.
Espace de noms : System.Windows.Ink
Assembly : IAWinFX (dans IAWinFX.dll)
Syntaxe
'Déclaration
Public ReadOnly Property RootNode As ContextNode
'Utilisation
Dim instance As InkAnalyzer
Dim value As ContextNode
value = instance.RootNode
public ContextNode RootNode { get; }
public:
property ContextNode^ RootNode {
ContextNode^ get ();
}
/** @property */
public ContextNode get_RootNode()
public function get RootNode () : ContextNode
Valeur de propriété
Type : System.Windows.Ink.ContextNode
ContextNode racine du InkAnalyzer.
Notes
InkAnalyzer maintient une arborescence d'objets ContextNode. Ces objets contiennent l'entrée à analyser et les résultats de l'analyse. Lorsque les traits sont initialement ajoutés au InkAnalyzer, le InkAnalyzer les assigne à un UnclassifiedInkNode. Après avoir analysé les traits, le InkAnalyzer les assigne aux objets ContextNode appropriés de l'arborescence.
Exemples
Cet exemple appelle une méthode d'assistance, CheckTreeNodes, pour vérifier tous les objets ContextNode actuellement maintenus par le InkAnalyzer (nommé theInkAnalyzer).
' Use a helper function to check all the ContextNode objects in
' the analyzer's tree.
CheckTreeNodes(Me.theInkAnalyzer.RootNode)
// Use a helper function to check all the ContextNode objects in
// the analyzer's tree.
CheckTreeNodes(this.theInkAnalyzer.RootNode);
Dans cet exemple, CheckTreeNodes envoie à la sortie de débogage des informations à propos de chaque nœud rencontré.
Private Shared Sub CheckTreeNodes(ByVal theContextNode As ContextNode)
' Check the node...
System.Diagnostics.Debug.WriteLine(theContextNode.ToString())
System.Diagnostics.Debug.Indent()
' Check the child nodes.
Dim theContextSubnode As ContextNode
For Each theContextSubnode In theContextNode.SubNodes
CheckTreeNodes(theContextSubnode)
Next theContextSubnode
System.Diagnostics.Debug.Unindent()
End Sub 'CheckTreeNodes
private static void CheckTreeNodes(ContextNode theContextNode)
{
// Check the node...
System.Diagnostics.Debug.WriteLine(theContextNode.ToString());
System.Diagnostics.Debug.Indent();
// Check the child nodes.
foreach (ContextNode theContextSubnode
in theContextNode.SubNodes)
{
CheckTreeNodes(theContextSubnode);
}
System.Diagnostics.Debug.Unindent();
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0