ClassGridViewCellInfoCollection.GridViewCellInfoCollectionEnumerator
Class
Represents enumerator class for GridViewCellInfoCollection
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
cs-api-definition
public class GridViewCellInfoCollection.GridViewCellInfoCollectionEnumerator : IDisposable, IEnumerator
Inheritance: objectGridViewCellInfoCollection.GridViewCellInfoCollectionEnumerator
Implements:
Constructors
GridViewCellInfoCollectionEnumerator(GridViewCellInfoCollection)
Initializes a new instance of the GridViewCellInfoCollectionEnumerator class.
Declaration
cs-api-definition
public GridViewCellInfoCollectionEnumerator(GridViewCellInfoCollection collection)
Parameters
collection
The associated GridViewCellInfoCollection, owner of this enumerator
Properties
Current
Gets the current element in the collection.
Declaration
cs-api-definition
public GridViewCellInfo Current { get; }
Property Value
Methods
Dispose()
Declaration
cs-api-definition
public void Dispose()
Implements
MoveNext()
Advances the enumerator to the next element of the collection.
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
cs-api-definition
public void Reset()
Implements