System.Web.UI.WebControls.GridViewRowCollection.GetEnumerator Method

Returns an enumerator that contains all System.Web.UI.WebControls.GridViewRow objects in the System.Web.UI.WebControls.GridViewRowCollection.

Syntax

public IEnumerator GetEnumerator ()

Returns

An IEnumerator implemented object that contains all System.Web.UI.WebControls.GridViewRow objects in the System.Web.UI.WebControls.GridViewRowCollection.

Remarks

Use this method to get an enumerator that can be iterated through linearly to access each item in the System.Web.UI.WebControls.GridViewRowCollection. To access the item at the current position in the enumerator, use the IEnumerator.Current property. Use the IEnumerator.MoveNext method to move to the next item in the collection. To move the enumerator to its initial position, use the IEnumerator.Reset method.

Note:

When you initially get the enumerator or use the IEnumerator.Reset method to move the enumerator to the first item in the collection, you must call the IEnumerator.MoveNext method. Otherwise, the item that is represented by the IEnumerator.Current property is undefined.

Requirements

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0