DockStyle.cs 524 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Windows.Forms.DockStyle.cs
  3. //
  4. // Author:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Windows.Forms {
  11. /// <summary>
  12. /// Specifies the position and manner in which a control is docked.
  13. /// </summary>
  14. //[Serializable]
  15. public enum DockStyle {
  16. //Values were verified with enumcheck.
  17. None = 0,
  18. Top = 1,
  19. Bottom = 2,
  20. left = 3,
  21. Right = 4,
  22. Fill = 5,
  23. }
  24. }