Merge pull request #3018 from ludovic-henry/coop-marshal-attach
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / FormStartPosition.cs
index 4800d3fbfbf8be3a578ab8642c0652494191161c..ce2e4f51a5d8a9f68f62e2f49067150ba598ce6a 100644 (file)
@@ -1,13 +1,3 @@
-//
-// System.Windows.Forms.FormStartPosition.cs
-//
-// Author:
-//   Jaak Simm (jaaksimm@firm.ee)
-//   Dennis Hayes (dennish@raytek.com)
-// (C) 2002 Ximian, Inc.  http://www.ximian.com
-//
-
-//
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // "Software"), to deal in the Software without restriction, including
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
+// Copyright (c) 2004 Novell, Inc.
+//
+// Authors:
+//     Ravindra (rkumar@novell.com)
+//
 
 using System.Runtime.InteropServices;
 
-namespace System.Windows.Forms {
-
-
-       /// <summary>
-  /// Specifies the initial position of a form.
-       /// </summary>
-       [ComVisible(true)]
-       public enum FormStartPosition {
-
-               //Values were verified with enumcheck.
+namespace System.Windows.Forms
+{
+       [ComVisible (true)]
+       public enum FormStartPosition
+       {
                Manual = 0,
                CenterScreen = 1,
                WindowsDefaultLocation = 2,
                WindowsDefaultBounds = 3,
-               CenterParent = 4,               
+               CenterParent = 4
        }
 }