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