Class GridViewCellInfoCollection.GridViewCellInfoCollectionEnumerator
Represents enumerator class for GridViewCellInfoCollection
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCellInfoCollectionEnumerator : IEnumerator<GridViewCellInfo>, IDisposable, IEnumerator
Constructors
GridViewCellInfoCollectionEnumerator(GridViewCellInfoCollection)
Initializes a new instance of the GridViewCellInfoCollectionEnumerator class.
Declaration
public GridViewCellInfoCollectionEnumerator(GridViewCellInfoCollection collection)
Parameters
GridViewCellInfoCollection
collection
The associated GridViewCellInfoCollection, owner of this enumerator |
Properties
Current
Gets the current element in the collection.
Declaration
public GridViewCellInfo Current { get; }
Property Value
GridViewCellInfo
|
Implements
Methods
Dispose()
Declaration
public void Dispose()
Implements
MoveNext()
Advances the enumerator to the next element of the collection.
Declaration
public bool MoveNext()
Returns
System.Boolean
|
Implements
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
Implements
Explicit Interface Implementations
IEnumerator.Current
Declaration
object IEnumerator.Current { get; }
Returns
System.Object
|