Class GridViewPinnedRowCollection
Represents a collection that stores that stores the pinned rows
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewPinnedRowCollection : IReadOnlyCollection<GridViewRowInfo>, IEnumerable<GridViewRowInfo>, IEnumerable, ITraversable
Constructors
GridViewPinnedRowCollection(GridViewInfo)
Initializes a new instance of the GridViewPinnedRowCollection class.
Declaration
public GridViewPinnedRowCollection(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 GridViewRowInfo this[int index] { get; }
Parameters
System.Int32
index
|
Property Value
GridViewRowInfo
|
Implements
Methods
Contains(GridViewRowInfo)
Determines whether pinned rows collection contains the specified row.
Declaration
public bool Contains(GridViewRowInfo item)
Parameters
GridViewRowInfo
item
|
Returns
System.Boolean
|
Implements
CopyTo(GridViewRowInfo[], Int32)
Copies to the array starting at the specified index.
Declaration
public void CopyTo(GridViewRowInfo[] array, int index)
Parameters
GridViewRowInfo[]
array
The array. |
System.Int32
index
The index. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GridViewRowInfo> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<GridViewRowInfo>
A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
IndexOf(GridViewRowInfo)
Returns the index of the specific item.
Declaration
public int IndexOf(GridViewRowInfo item)
Parameters
GridViewRowInfo
item
|
Returns
System.Int32
|
Implements
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
|