| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Windows.Forms.DockStyle.cs
- //
- // Author:
- // Jaak Simm ([email protected])
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// Specifies the position and manner in which a control is docked.
- /// </summary>
- //[Serializable]
- public enum DockStyle {
- //Values were verified with enumcheck.
- None = 0,
- Top = 1,
- Bottom = 2,
- left = 3,
- Right = 4,
- Fill = 5,
- }
- }
|