* DataColumn.cs: In Expression setter, set the expression member even if
[mono.git] / mcs / class / System.Data / System.Data / DataViewRowState.cs
1 //
2 // System.Data.DataViewRowState.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System.ComponentModel;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Describes the version of data in a DataRow.
16         /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
17         /// </summary>
18         [Flags]
19         [EditorAttribute("Microsoft.VSDesigner.Data.Design.DataViewRowStateEditor, "+Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+Consts.AssemblySystem_Drawing )]
20         [Serializable]
21         public enum DataViewRowState
22         {
23                 None = 0,
24                 Unchanged = 2,
25                 Added = 4,
26                 Deleted = 8,
27                 ModifiedCurrent = 16,
28                 CurrentRows = 22,
29                 ModifiedOriginal = 32,
30                 OriginalRows = 42
31         }
32 }