Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DataViewRowState.cs
Go to the documentation of this file.
2
3namespace System.Data;
4
5[Flags]
6[Editor("Microsoft.VSDesigner.Data.Design.DataViewRowStateEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7public enum DataViewRowState
8{
9 None = 0,
10 Unchanged = 2,
11 Added = 4,
12 Deleted = 8,
13 ModifiedCurrent = 0x10,
14 ModifiedOriginal = 0x20,
15 OriginalRows = 0x2A,
16 CurrentRows = 0x16
17}