This documentation is archived and is not being maintained.
DataRowState Enumeration
Visual Studio 2010
Gets the state of a DataRow object.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.DataAssembly: System.Data (in System.Data.dll)
| Member name | Description | |
|---|---|---|
![]() | Detached | 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. |
![]() | Unchanged | The row has not changed since AcceptChanges was last called. |
![]() | Added | The row has been added to a DataRowCollection, and AcceptChanges has not been called. |
![]() | Deleted | The row was deleted using the Delete method of the DataRow. |
![]() | Modified | The row has been modified and AcceptChanges has not been called. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
