* Took enums a* - d* that were in System.Windows.Forms.enums.cs and:
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ColorDepth.cs
1 //\r
2 // System.Windows.Forms.ColorDepth.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 ColorDepth {\r
16                 Depth16Bit = 16,\r
17                 Depth24Bit = 24,\r
18                 Depth32Bit = 32,\r
19                 Depth4Bit = 4,\r
20                 Depth8Bit = 8\r
21         }\r
22 }\r