2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ArrangeStartingPosition.cs
1 //
2 // System.Windows.Forms.ArrangeStartingPosition.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 // (C) 2002 Ximian, Inc.  http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Windows.Forms {
12
13         /// <summary>
14         /// </summary>
15         public enum ArrangeStartingPosition {
16                 BottomLeft = 0,
17                 BottomRight = 1,
18                 Hide = 8,
19                 TopLeft = 2,
20                 TopRight = 3
21         }
22 }