- Fixed RadioButton display
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ErrorIconAlignment.cs
1 //
2 // System.Windows.Forms.ErrorIconAlignment.cs
3 //
4 // Author:
5 //   Jaak Simm (jaaksimm@firm.ee)
6 //   Dennis Hayes (dennish@raytek.com)
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11
12 namespace System.Windows.Forms {
13
14
15         /// <summary>
16   /// Specifies constants indicating the locations that an error icon can appear
17   /// in relation to the control with an error. 
18         /// </summary>
19         public enum ErrorIconAlignment {
20
21                 //Values were verified with enumcheck.
22                 TopLeft = 0,
23                 TopRight = 1,
24                 MiddleLeft = 2,
25                 MiddleRight = 3,
26                 BottomLeft = 4,
27                 BottomRight = 5,
28         }
29 }