Click or drag to resize
KaxTreeNodeNodes Property
Gets a KaxTreeNodeCollection object that contains the child nodes of the current KaxTreeNode.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public KaxTreeNodeCollection Nodes { get; }

Property Value

Type: KaxTreeNodeCollection
A KaxTreeNodeCollection that contains the child nodes of the current KaxTreeNode. By default the collection is empty (the node has no children).

Implements

IKaxTreeNodeContainerNodes
Remarks
Use the Nodes property to access the child nodes of the KaxTreeNode. You can also use the Nodes property to manage the child nodes - you can add, remove or modify nodes.
Examples
The following example demonstrates how to programmatically modify the properties of a child node.
KaxTreeNode node = KaxTreeView1.FindNodeByText("Test");
node.Nodes[0].Text = "Example";
node.Nodes[0].NavigateUrl = "http://www.example.com";
See Also