Class GridViewSystemRowCollection
Represents a collection containing the system rows in RadGridView.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewSystemRowCollection : IReadOnlyCollection<GridViewSystemRowInfo>, IEnumerable<GridViewSystemRowInfo>, IEnumerable, ITraversable
Constructors
GridViewSystemRowCollection(GridViewInfo)
Initializes a new instance of the Grid
Declaration
public GridViewSystemRowCollection(GridViewInfo viewInfo)
Parameters
Grid The view info. |
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 GridViewSystemRowInfo this[int index] { get; }
Parameters
System.
|
Property Value
Implements
Items
Gets the items.
Declaration
protected IList<GridViewSystemRowInfo> Items { get; }
Property Value
System. The items. |
Methods
Contains(GridViewSystemRowInfo)
Determines whether the specified value is contained.
Declaration
public bool Contains(GridViewSystemRowInfo value)
Parameters
Grid The value. |
Returns
System.
|
Implements
CopyTo(GridViewSystemRowInfo[], Int32)
Copies the system rows collection to an array.
Declaration
public void CopyTo(GridViewSystemRowInfo[] array, int index)
Parameters
Grid The array. |
System. The index. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GridViewSystemRowInfo> GetEnumerator()
Returns
System. A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
IndexOf(GridViewSystemRowInfo)
Returns the index of the system row.
Declaration
public int IndexOf(GridViewSystemRowInfo value)
Parameters
Grid The value. |
Returns
System.
|
Implements
Move(Int32, Int32)
Moves the row from the specified index to the new one.
Declaration
public void Move(int indexFrom, int indexTo)
Parameters
System. The index from. |
System. The index to. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.
|
Implements
ITraversable.get_Item(Int32)
Declaration
object ITraversable.get_Item(int index)
Parameters
System.
|
Returns
System.
|
Implements
ITraversable.Item[Int32]
Declaration
object ITraversable.this[] { get; }
Parameters
System.
|
Returns
System.
|