DataRowState
Leave feedback
On this page
Inheritance: java.lang.Object
public final class DataRowState
Specifies the state of a DataRow object.
| Field | Description |
|---|---|
| DETACHED | Specifies that the row has been created but is not part of any DataRowCollection. |
| UNCHANGED | Specifies that the row has not changed. |
| ADDED | Specifies that the row has been added to a DataRowCollection. |
| DELETED | Specifies that the row was deleted using the DataRow.delete() method of the DataRow. |
| MODIFIED | Specifies that the row has been modified. |
public static final int DETACHED
Specifies that the row has been created but is not part of any DataRowCollection. A 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.
public static final int UNCHANGED
Specifies that the row has not changed.
public static final int ADDED
Specifies that the row has been added to a DataRowCollection.
public static final int DELETED
Specifies that the row was deleted using the DataRow.delete() method of the DataRow.
public static final int MODIFIED
Specifies that the row has been modified.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.