Interface IOrderedTree<T>
Interface to the tree which supports direct access to the items
Inherited Members
Namespace: Telerik.Collections.Generic
Assembly: Telerik.WinControls.dll
Syntax
public interface IOrderedTree<T> : ISortedTree<T>, ITree<T>
Type Parameters
T
|
Methods
GetByOrder(Int32)
Get item by order index
Declaration
ITreeNode<T> GetByOrder(int idx)
Parameters
System.Int32
idx
|
Returns
ITreeNode<T>
|
GetOrder(ITreeNode<T>)
Get index by item
Declaration
int GetOrder(ITreeNode<T> node)
Parameters
ITreeNode<T>
node
|
Returns
System.Int32
|