Class PivotGroupNodeChildrenCollection
Represents group node pivot collection
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public class PivotGroupNodeChildrenCollection : IReadOnlyCollection<PivotGroupNode>, IEnumerable<PivotGroupNode>, IEnumerable
Constructors
PivotGroupNodeChildrenCollection(PivotGroupNode)
Initializes a new instance of the Pivot
Declaration
public PivotGroupNodeChildrenCollection(PivotGroupNode parent)
Parameters
Pivot The parent. |
Properties
Count
Gets the count.
Declaration
public int Count { get; }
Property Value
System. The count. |
Implements
Item[Int32]
Gets the item at the specified index.
Declaration
public PivotGroupNode this[int index] { get; }
Parameters
System.
|
Property Value
Implements
Methods
Contains(PivotGroupNode)
Determines whether the specified value is contained.
Declaration
public bool Contains(PivotGroupNode value)
Parameters
Pivot The value. |
Returns
System.
|
Implements
CopyTo(PivotGroupNode[], Int32)
Copies to the array considering the passed index.
Declaration
public void CopyTo(PivotGroupNode[] array, int index)
Parameters
Pivot The array. |
System. The index. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<PivotGroupNode> GetEnumerator()
Returns
System. A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
IndexOf(PivotGroupNode)
Returns th index of the specific group node.
Declaration
public int IndexOf(PivotGroupNode value)
Parameters
Pivot The value. |
Returns
System.
|
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.
|