ClassGridViewPinnedRowCollection
Represents a collection that stores that stores the pinned rows
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewPinnedRowCollection : IReadOnlyCollection<GridViewRowInfo>, IEnumerable, ITraversable
Inheritance: objectGridViewPinnedRowCollection
Implements:
Constructors
GridViewPinnedRowCollection(GridViewInfo)
Initializes a new instance of the GridViewPinnedRowCollection class.
Declaration
public GridViewPinnedRowCollection(GridViewInfo viewInfo)
Parameters
viewInfo
The view info.
Properties
Count
Gets the count.
this[int]
Gets the item at the specified index.
Declaration
public GridViewRowInfo this[int index] { get; }
Parameters
index
Property Value
Implements
Methods
Contains(GridViewRowInfo)
Determines whether pinned rows collection contains the specified row.
Declaration
public bool Contains(GridViewRowInfo item)
Parameters
item
Returns
true if [contains] [the specified value]; otherwise, false.
Implements
CopyTo(GridViewRowInfo[], int)
Copies to the array starting at the specified index.
Declaration
public void CopyTo(GridViewRowInfo[] array, int index)
Parameters
array
The array.
index
The index.
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)
Returns the index of the specific item.
Declaration
public int IndexOf(GridViewRowInfo item)
Parameters
item
Returns
Implements