ClassGridViewPinnedRowCollection.GridViewPinnedRowsCollectionEnumerator
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewPinnedRowCollection.GridViewPinnedRowsCollectionEnumerator : IDisposable, IEnumerator
Inheritance: objectGridViewPinnedRowCollection.GridViewPinnedRowsCollectionEnumerator
Implements:
Constructors
GridViewPinnedRowsCollectionEnumerator(GridViewPinnedRowCollection)
Initializes a new instance of the GridViewPinnedRowCollection.GridViewPinnedRowsCollectionEnumerator class.
Declaration
public GridViewPinnedRowsCollectionEnumerator(GridViewPinnedRowCollection collection)
Parameters
collection
The collection.
Properties
Current
Gets the element in the collection at the current position of the enumerator.
Declaration
public GridViewRowInfo Current { get; }
Property Value
The element in the collection at the current position of the enumerator.
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
Implements
MoveNext()
Advances the enumerator to the next element of the collection.
Declaration
public bool MoveNext()
Returns
true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
Exceptions
The collection was modified after the enumerator was created.
Implements
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
Exceptions
The collection was modified after the enumerator was created.
Implements