| 123456789101112131415161718192021222324252627 |
- //
- // System.Data.DataViewRowState.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Describes the version of data in a DataRow.
- /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
- /// </summary>
- public enum DataViewRowState
- {
- Added,
- CurrentRows,
- Deleted,
- ModifiedCurrent,
- ModifiedOriginal,
- None,
- OriginalRows,
- Unchanged
- }
- }
|