GeoEco.Datasets.UpdateCursor.NextRow

UpdateCursor.NextRow()

Advances the cursor to the next row.

Returns:

True if a row is available. False if no more rows are available.

After opening the cursor, you must call NextRow() prior to accessing the first row, and call it again prior to accessing each subsequent row. Once NextRow() returns False, no more rows are available, row-access functions such as GetValue() will fail, the cursor is automatically closed, and IsOpen will be False.

If NextRow() has not been called yet, or the last time it was called it returned True, AtEnd will be False. Once NextRow() returns False, AtEnd will be True.

Return type:

bool