This enumeration indicates the state of a row (returned by the DataRow.RowState property). Added indicates a row inserted into the DataTable but not yet committed to the data source. Deleted indicates the row was deleted, but the change has not been applied to the data source, and Modified indicates the row has been edited but the changes have not been committed. Detached indicates a new row (created with DataTable.NewRow( ) ) but not yet inserted into the table (with DataRowCollection.Add( ) ). public enum DataRowState { Detached = 0x00000001 , Unchanged = 0x00000002 , Added = 0x00000004 , Deleted = 0x00000008 , Modified = 0x00000010 } HierarchySystem.Object System.ValueType System.Enum(System.IComparable, System.IFormattable , System.IConvertible) DataRowState Returned ByDataRow.RowState Passed ToDataSet.{GetChanges( ) , HasChanges( )} , DataTable.GetChanges( ) |