ClassGridViewChildRowCollection
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewChildRowCollection : IReadOnlyCollection<GridViewRowInfo>, IList, ICollection, IEnumerable, ITraversable
Inheritance: objectGridViewChildRowCollection
Implements:
Constructors
GridViewChildRowCollection()
Initializes a new instance of the GridViewChildRowCollection class.
Declaration
public GridViewChildRowCollection()
Fields
Empty
Declaration
public static GridViewChildRowCollection Empty
Field Value
rows
Declaration
protected IReadOnlyCollection<GridViewRowInfo> rows
Field Value
Properties
Count
Gets the count.
Declaration
public virtual int Count { get; }
Property Value
The count.
Implements
IsFixedSize
Gets a value indicating whether the IList has a fixed size.
IsReadOnly
Gets a value indicating whether the IList is read-only.
this[int]
Gets the GridViewRowInfo at the specified index.
Declaration
public virtual GridViewRowInfo this[int index] { get; }
Parameters
index
Property Value
Implements
Methods
Contains(GridViewRowInfo)
Determines whether [contains] [the specified item].
Declaration
public virtual bool Contains(GridViewRowInfo item)
Parameters
item
The item.
Returns
true if [contains] [the specified item]; otherwise, false.
Implements
CopyTo(GridViewRowInfo[], int)
Copies to.
Declaration
public void CopyTo(GridViewRowInfo[] array, int arrayIndex)
Parameters
array
The array.
arrayIndex
Index of the array.
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GridViewRowInfo> GetEnumerator()
Returns
IEnumerator<GridViewRowInfo>
A IEnumerator<T> that can be used to iterate through the collection.
IndexOf(GridViewRowInfo)
Indexes the of.
Declaration
public virtual int IndexOf(GridViewRowInfo item)
Parameters
item
The item.
Returns
Implements
Load(IList<GridViewRowInfo>)
Loads the specified rows.
Declaration
public void Load(IList<GridViewRowInfo> rows)
Parameters
rows
IList<GridViewRowInfo>
The rows.
Load(IReadOnlyCollection<GridViewRowInfo>)
Loads the specified rows.
Declaration
public void Load(IReadOnlyCollection<GridViewRowInfo> rows)
Parameters
rows
IReadOnlyCollection<GridViewRowInfo>
The rows.
Remove(object)
Removes the first occurrence of a specific object from the IList.
Declaration
public void Remove(object value)
Parameters
value
The object to remove from the IList.
Exceptions
Implements
RemoveAt(int)
Removes the IList item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
index
The zero-based index of the item to remove.
Exceptions
index is not a valid index in the IList.
Implements