GeoEco.Datasets.UpdateCursor.DeleteRow

UpdateCursor.DeleteRow()

Deletes the current row.

You cannot access a row after calling DeleteRow(); GetValue(), SetValue(), and so on will not work. You cannot update it. You must call NextRow() to advance the cursor to the next row.

Certain storage formats may implement a transactional updating scheme in which the delete will not be committed to the underlying data store until the cursor has been closed. For more information, please see the documentation for the particular kind of Table you are working with.