KaxTreeViewSelectedNodes Property |
Gets a collection of KaxTreeNode objects that represent the nodes in the control
that are currently selected.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic IList<KaxTreeNode> SelectedNodes { get; }
Public ReadOnly Property SelectedNodes As IList(Of KaxTreeNode)
Get
public:
property IList<KaxTreeNode^>^ SelectedNodes {
IList<KaxTreeNode^>^ get ();
}
member SelectedNodes : IList<KaxTreeNode> with get
Return Value
Type:
IListKaxTreeNodeAn IList<KaxTreeNode> containing the selected nodes.
RemarksThis 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