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

Represents group node pivot collection

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public class PivotGroupNodeChildrenCollection : IReadOnlyCollection<PivotGroupNode>, IEnumerable

Inheritance: objectPivotGroupNodeChildrenCollection

Implements: IEnumerableIReadOnlyCollection<PivotGroupNode>

Constructors

Initializes a new instance of the PivotGroupNodeChildrenCollection class.

C#
public PivotGroupNodeChildrenCollection(PivotGroupNode parent)
Parameters:parentPivotGroupNode

The parent.

Properties

Gets the count.

C#
public int Count { get; }
Property Value:

The count.

Implements: IReadOnlyCollection<PivotGroupNode>.Count

Gets the item at the specified index.

C#
public PivotGroupNode this[int index] { get; }
Parameters:indexint

Implements: IReadOnlyCollection<PivotGroupNode>.this[int]

Methods

Determines whether the specified value is contained.

C#
public bool Contains(PivotGroupNode value)
Parameters:valuePivotGroupNode

The value.

Returns:

bool

true if [contains] [the specified value]; otherwise, false.

Implements: IReadOnlyCollection<PivotGroupNode>.Contains(PivotGroupNode)

Copies to the array considering the passed index.

C#
public void CopyTo(PivotGroupNode[] array, int index)
Parameters:arrayPivotGroupNode[]

The array.

indexint

The index.

Implements: IReadOnlyCollection<PivotGroupNode>.CopyTo(PivotGroupNode[], int)

Returns an enumerator that iterates through the collection.

C#
public IEnumerator<PivotGroupNode> GetEnumerator()
Returns:

IEnumerator<PivotGroupNode>

A IEnumerator<T> that can be used to iterate through the collection.

Returns th index of the specific group node.

C#
public int IndexOf(PivotGroupNode value)
Parameters:valuePivotGroupNode

The value.

Returns:

int

Implements: IReadOnlyCollection<PivotGroupNode>.IndexOf(PivotGroupNode)