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 GridViewSystemRowCollection class.
Declaration
public GridViewSystemRowCollection(GridViewInfo viewInfo)
Parameters
GridViewInfo
viewInfo
The view info. |
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 GridViewSystemRowInfo this[int index] { get; }
Parameters
System.Int32
index
|
Property Value
GridViewSystemRowInfo
|
Implements
Items
Gets the items.
Declaration
protected IList<GridViewSystemRowInfo> Items { get; }
Property Value
System.Collections.Generic.IList<GridViewSystemRowInfo>
The items. |
Methods
Contains(GridViewSystemRowInfo)
Determines whether the specified value is contained.
Declaration
public bool Contains(GridViewSystemRowInfo value)
Parameters
GridViewSystemRowInfo
value
The value. |
Returns
System.Boolean
|
Implements
CopyTo(GridViewSystemRowInfo[], Int32)
Copies the system rows collection to an array.
Declaration
public void CopyTo(GridViewSystemRowInfo[] array, int index)
Parameters
GridViewSystemRowInfo[]
array
The array. |
System.Int32
index
The index. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GridViewSystemRowInfo> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<GridViewSystemRowInfo>
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
GridViewSystemRowInfo
value
The value. |
Returns
System.Int32
|
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.Int32
indexFrom
The index from. |
System.Int32
indexTo
The index to. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
ITraversable.get_Item(Int32)
Declaration
object ITraversable.get_Item(int index)
Parameters
System.Int32
index
|
Returns
System.Object
|
Implements
ITraversable.Item[Int32]
Declaration
object ITraversable.this[] { get; }
Parameters
System.Int32
index
|
Returns
System.Object
|