* Took enums a* - d* that were in System.Windows.Forms.enums.cs and:
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / BoundsSpecified.cs
1 //\r
2 // System.Windows.Forms.BoundsSpecified.cs\r
3 //\r
4 // Author:\r
5 //   Dennis Hayes (dennish@raytek.com)\r
6 // (C) 2002 Ximian, Inc.  http://www.ximian.com\r
7 //\r
8 \r
9 using System;\r
10 \r
11 namespace System.Windows.Forms {\r
12 \r
13         /// <summary>\r
14         /// </summary>\r
15         public enum BoundsSpecified {\r
16                 All = 15,\r
17                 Height = 8,\r
18                 Location = 3,\r
19                 None = 0,\r
20                 Size = 12,\r
21                 Width = 4,\r
22                 X = 1,\r
23                 Y = 2\r
24         }\r
25 }\r