Gets the state of a System.Data.DataRow object.
The System.Data.DataRowState enumeration is returned by the DataRow.RowState property of the System.Data.DataRow class.
Member Name | Description |
---|---|
Added |
The row has been added to a System.Data.DataRowCollection, and DataRow.AcceptChanges has not been called. |
Deleted |
The row was deleted using the DataRow.Delete method of the System.Data.DataRow. |
Detached |
The row has been created but is not part of any System.Data.DataRowCollection. A System.Data.DataRow is in this state immediately after it has been created and before it is added to a collection, or if it has been removed from a collection. |
Modified |
The row has been modified and DataRow.AcceptChanges has not been called. |
Unchanged |
The row has not changed since DataRow.AcceptChanges was last called. |