2004-04-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / BoundsSpecified.cs
1 //
2 // System.Windows.Forms.BoundsSpecified.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 //
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Windows.Forms
11 {
12         [Flags]
13         public enum BoundsSpecified
14         {
15                 All = 15,
16                 Height = 8,
17                 Location = 3,
18                 None = 0,
19                 Size = 12,
20                 Width = 4,
21                 X = 1,
22                 Y = 2
23         }
24 }