Interface IHierarchyAdapter
Describes a hierarchy.
Namespace: Telerik.Pivot.Core
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public interface IHierarchyAdapter
Methods
GetItemAt(Object, Int32)
Gets a child of item
at the index
.
Declaration
object GetItemAt(object item, int index)
Parameters
System.Object
item
The item child is requested for. |
System.Int32
index
The index of the requested child. |
Returns
System.Object
The child of |
GetItems(Object)
Get an enumeration with the child items of the provided item
.
Declaration
IEnumerable<object> GetItems(object item)
Parameters
System.Object
item
The item children are requested for. |
Returns
System.Collections.Generic.IEnumerable<System.Object>
The children of the |