Freigeben über


ContextNodeBase.ParentNode-Eigenschaft

Ruft den übergeordneten Knoten des ContextNodeBase in der Kontextknotenstruktur ab.

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public ReadOnly Property ParentNode As ContextNodeBase
'Usage
Dim instance As ContextNodeBase
Dim value As ContextNodeBase

value = instance.ParentNode
public ContextNodeBase ParentNode { get; }
public:
property ContextNodeBase^ ParentNode {
    ContextNodeBase^ get ();
}
/** @property */
public ContextNodeBase get_ParentNode()
public function get ParentNode () : ContextNodeBase

Eigenschaftenwert

Typ: System.Windows.Ink.AnalysisCore.ContextNodeBase
Der übergeordnete Knoten des ContextNodeBase in der Kontextknotenstruktur.

Hinweise

Gibt nullNULL-Verweis (Nothing in Visual Basic) zurück, wenn dies der RootNode ist.

Beispiele

In diesem Beispiel wird ein ContextNodeBase verwendet, der mithilfe einer Hashtable gefunden wurde, die Strukturknoten unter Verwendung einer System.Windows.Forms.TreeView mit dem Namen theTreeView zu Kontextknoten zuordnet. Nachdem der übergeordnete Knoten gefunden wurde, wird eine Methode mit dem Namen MarkNodeAsRed aufgerufen, um die Striche des Knotens in rot zu ändern.

Dim selectedNode As ContextNodeBase = CType(Me.theTreeView.SelectedNode.Tag, ContextNodeBase)
Dim parentNode As ContextNodeBase = selectedNode.ParentNode
If Not (parentNode Is Nothing) Then
    MarkNodeAsRed(parentNode)
End If
ContextNodeBase selectedNode = (ContextNodeBase)this.theTreeView.SelectedNode.Tag;
ContextNodeBase parentNode = selectedNode.ParentNode;
if (parentNode != null)
{
    MarkNodeAsRed(parentNode);
}

Plattformen

Windows Vista, Windows XP SP2, Windows Server 2003

.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

ContextNodeBase-Klasse

ContextNodeBase-Member

System.Windows.Ink.AnalysisCore-Namespace

ContextNodeBase.SubNodes