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 PivotGroupNodeChildrenCollection class.
Declaration
public PivotGroupNodeChildrenCollection(PivotGroupNode parent)
Parameters
PivotGroupNode
parent
The parent. |
Properties
Count
Gets the count.
Declaration
public int Count { get; }
Property Value
System.Int32
The count. |
Implements
Item[Int32]
Gets the item at the specified index.
Declaration
public PivotGroupNode this[int index] { get; }
Parameters
System.Int32
index
|
Property Value
PivotGroupNode
|
Implements
Methods
Contains(PivotGroupNode)
Determines whether the specified value is contained.
Declaration
public bool Contains(PivotGroupNode value)
Parameters
PivotGroupNode
value
The value. |
Returns
System.Boolean
|
Implements
CopyTo(PivotGroupNode[], Int32)
Copies to the array considering the passed index.
Declaration
public void CopyTo(PivotGroupNode[] array, int index)
Parameters
PivotGroupNode[]
array
The array. |
System.Int32
index
The index. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<PivotGroupNode> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<PivotGroupNode>
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
PivotGroupNode
value
The value. |
Returns
System.Int32
|
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|