Represents a collection that stores row group descriptors.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.PivotGrid.dll
Syntax:
public class RowGroupDescriptionCollection : IPivotFieldDescriptionCollection, IList, ICollection, IEnumerable
Inheritance: objectRowGroupDescriptionCollection
Implements:
Constructors
Initializes a new instance of the RowGroupDescriptionCollection class.
public RowGroupDescriptionCollection(RadPivotGridElement owner)
The owner.
Properties
Gets the number of elements contained in the ICollection<T>.
public int Count { get; }
The number of elements contained in the ICollection<T>.
Gets a value indicating whether the ICollection<T> is read-only.
public bool IsReadOnly { get; }
true if the ICollection<T> is read-only; otherwise, false.
Gets the owner.
public RadPivotGridElement Owner { get; }
The owner.
Implements:
Gets or sets the IGroupDescription at the specified index.
Methods
Adds the specified item.
Removes all items from the ICollection<T>.
Determines whether the collection contains the specified item.
Copies to the array at the specified index.
public void CopyTo(IGroupDescription[] array, int arrayIndex)
The array.
arrayIndexintIndex of the array.
Returns an enumerator that iterates through the collection.
public IEnumerator<IGroupDescription> GetEnumerator()
IEnumerator<IGroupDescription>
A IEnumerator<T> that can be used to iterate through the collection.
Gets the index of the item.
Inserts the specified index.
public void Insert(int index, IGroupDescription item)
The index.
itemIGroupDescriptionThe item.
Removes the specified item.
Removes the IList<T> item at the specified index.
public void RemoveAt(int index)
The zero-based index of the item to remove.
Exceptions:index is not a valid index in the IList<T>.
The IList<T> is read-only.