Click or drag to resize
KaxTreeNodeCollectionAddRange Method
Appends the specified array of KaxTreeNode objects 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 virtual void AddRange(
	IEnumerable<KaxTreeNode> nodes
)

Parameters

nodes
Type: System.Collections.GenericIEnumerableKaxTreeNode
The array of KaxTreeNode to append to the end of the current KaxTreeNodeCollection.
Examples
The following example demonstrates how to use the AddRange method to add multiple nodes in a single step.
KaxTreeNode[] nodes = new KaxTreeNode[] { new KaxTreeNode("First"), new KaxTreeNode("Second"), new KaxTreeNode("Third") };
KaxTreeView1.Nodes.AddRange(nodes);
See Also