Click or drag to resize
KaxTreeNodeCollectionAdd Method
Appends the specified KaxTreeNode object to the end of the current KaxTreeNodeCollection.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public void Add(
	KaxTreeNode node
)

Parameters

node
Type: Kettic.AspNet.ControlsKaxTreeNode
The KaxTreeNode to append to the end of the current KaxTreeNodeCollection.
Examples
The following example demonstrates how to programmatically add nodes in a KaxTreeView control.
KaxTreeNode newsNode = new KaxTreeNode("News");
KaxTreeView1.Nodes.Add(newsNode);
See Also