Click or drag to resize
KaxTreeViewSelectedNodes Property
Gets a collection of KaxTreeNode objects that represent the nodes in the control that are currently selected.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public IList<KaxTreeNode> SelectedNodes { get; }

Return Value

Type: IListKaxTreeNode
An IList<KaxTreeNode> containing the selected nodes.
Remarks

This collection is commonly used to iterate through all the nodes that have been selected in the tree.

The SelectedNodes collection is populated using a depth-first traversal of the tree structure: each parent node is processed down to its child nodes before the next parent node is populated.

See Also