New to Telerik UI for WPFStart a free 30-day trial

Describes a hierarchy.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.Pivot.Core.dll

Syntax:

C#
public interface IHierarchyAdapter

Derived Classes: FieldAdapter

Methods

Gets a child of item at the index.

C#
object GetItemAt(object item, int index)
Parameters:itemobject

The item child is requested for.

indexint

The index of the requested child.

Returns:

object

The child of item at index.

Get an enumeration with the child items of the provided item.

C#
IEnumerable<object> GetItems(object item)
Parameters:itemobject

The item children are requested for.

Returns:

IEnumerable<object>

The children of the item.