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:
Constructors
Initializes a new instance of the PivotGroupNodeChildrenCollection class.
C#
public PivotGroupNodeChildrenCollection(PivotGroupNode parent)
The parent.
Properties
Gets the item at the specified index.
Methods
Determines whether the specified value is contained.
C#
public bool Contains(PivotGroupNode value)
The value.
Returns:true if [contains] [the specified value]; otherwise, false.
Implements:
Copies to the array considering the passed index.
C#
public void CopyTo(PivotGroupNode[] array, int index)
The array.
indexintThe index.
Implements:
Returns an enumerator that iterates through the collection.
C#
public IEnumerator<PivotGroupNode> GetEnumerator()
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)
The value.
Returns:Implements: