Class RowGroupDescriptionCollection
Represents a collection that stores row group descriptors.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public class RowGroupDescriptionCollection : IList<IGroupDescription>, ICollection<IGroupDescription>, IEnumerable<IGroupDescription>, IPivotFieldDescriptionCollection, IList, ICollection, IEnumerable
Constructors
RowGroupDescriptionCollection(RadPivotGridElement)
Initializes a new instance of the RowGroupDescriptionCollection class.
Declaration
public RowGroupDescriptionCollection(RadPivotGridElement owner)
Parameters
RadPivotGridElement
owner
The owner. |
Properties
Count
Gets the number of elements contained in the System.Collections.Generic.ICollection<T>.
Declaration
public int Count { get; }
Property Value
System.Int32
The number of elements contained in the System.Collections.Generic.ICollection<T>. |
Implements
IsReadOnly
Gets a value indicating whether the System.Collections.Generic.ICollection<T> is read-only.
Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean
true if the System.Collections.Generic.ICollection<T> is read-only; otherwise, false. |
Implements
Item[Int32]
Gets or sets the IGroupDescription at the specified index.
Declaration
public IGroupDescription this[int index] { get; set; }
Parameters
System.Int32
index
|
Property Value
IGroupDescription
|
Implements
Owner
Gets the owner.
Declaration
public RadPivotGridElement Owner { get; }
Property Value
RadPivotGridElement
The owner. |
Implements
Methods
Add(IGroupDescription)
Adds the specified item.
Declaration
public void Add(IGroupDescription item)
Parameters
IGroupDescription
item
The item. |
Implements
Clear()
Removes all items from the System.Collections.Generic.ICollection<T>.
Declaration
public void Clear()
Implements
Exceptions
System.NotSupportedException
The System.Collections.Generic.ICollection<T> is read-only. |
Contains(IGroupDescription)
Determines whether the collection contains the specified item.
Declaration
public bool Contains(IGroupDescription item)
Parameters
IGroupDescription
item
The item. |
Returns
System.Boolean
|
Implements
CopyTo(IGroupDescription[], Int32)
Copies to the array at the specified index.
Declaration
public void CopyTo(IGroupDescription[] array, int arrayIndex)
Parameters
IGroupDescription[]
array
The array. |
System.Int32
arrayIndex
Index of the array. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<IGroupDescription> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<IGroupDescription>
A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
IndexOf(IGroupDescription)
Gets the index of the item.
Declaration
public int IndexOf(IGroupDescription item)
Parameters
IGroupDescription
item
The item. |
Returns
System.Int32
|
Implements
Insert(Int32, IGroupDescription)
Inserts the specified index.
Declaration
public void Insert(int index, IGroupDescription item)
Parameters
System.Int32
index
The index. |
IGroupDescription
item
The item. |
Implements
Remove(IGroupDescription)
Removes the specified item.
Declaration
public bool Remove(IGroupDescription item)
Parameters
IGroupDescription
item
The item. |
Returns
System.Boolean
|
Implements
RemoveAt(Int32)
Removes the System.Collections.Generic.IList<T> item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
The zero-based index of the item to remove. |
Implements
Exceptions
System.ArgumentOutOfRangeException
|
System.NotSupportedException
The System.Collections.Generic.IList<T> is read-only. |
Explicit Interface Implementations
ICollection.CopyTo(Array, Int32)
Declaration
void ICollection.CopyTo(Array array, int index)
Parameters
System.Array
array
|
System.Int32
index
|
Implements
ICollection.Count
Declaration
int ICollection.Count { get; }
Returns
System.Int32
|
Implements
ICollection.IsSynchronized
Declaration
bool ICollection.IsSynchronized { get; }
Returns
System.Boolean
|
Implements
ICollection.SyncRoot
Declaration
object ICollection.SyncRoot { get; }
Returns
System.Object
|
Implements
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
IList.Add(Object)
Declaration
int IList.Add(object value)
Parameters
System.Object
value
|
Returns
System.Int32
|
Implements
IList.Clear()
Declaration
void IList.Clear()
Implements
IList.Contains(Object)
Declaration
bool IList.Contains(object value)
Parameters
System.Object
value
|
Returns
System.Boolean
|
Implements
IList.get_Item(Int32)
Declaration
object IList.get_Item(int index)
Parameters
System.Int32
index
|
Returns
System.Object
|
Implements
IList.IndexOf(Object)
Declaration
int IList.IndexOf(object value)
Parameters
System.Object
value
|
Returns
System.Int32
|
Implements
IList.Insert(Int32, Object)
Declaration
void IList.Insert(int index, object value)
Parameters
System.Int32
index
|
System.Object
value
|
Implements
IList.IsFixedSize
Declaration
bool IList.IsFixedSize { get; }
Returns
System.Boolean
|
Implements
IList.IsReadOnly
Declaration
bool IList.IsReadOnly { get; }
Returns
System.Boolean
|
Implements
IList.Item[Int32]
Declaration
object IList.this[] { get; set; }
Parameters
System.Int32
index
|
Returns
System.Object
|
Implements
IList.Remove(Object)
Declaration
void IList.Remove(object value)
Parameters
System.Object
value
|
Implements
IList.RemoveAt(Int32)
Declaration
void IList.RemoveAt(int index)
Parameters
System.Int32
index
|
Implements
IList.set_Item(Int32, Object)
Declaration
void IList.set_Item(int index, object value)
Parameters
System.Int32
index
|
System.Object
value
|