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

Describes the hierarchical structure of the ICompositeField.

Definition

Namespace:Telerik.Windows.Controls.FieldList

Assembly:Telerik.Windows.Controls.PivotFieldList.dll

Syntax:

C#
public class FieldAdapter : IHierarchyAdapter

Inheritance: objectFieldAdapter

Implements: IHierarchyAdapter

Constructors

C#
public FieldAdapter()

Methods

Gets a child of item at the index.

C#
public 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.

Implements: IHierarchyAdapter.GetItemAt(object, int)

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

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

The item children are requested for.

Returns:

IEnumerable<object>

The children of the item.

Implements: IHierarchyAdapter.GetItems(object)