BoundsSpecified.cs 389 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Windows.Forms.BoundsSpecified.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Windows.Forms {
  10. /// <summary>
  11. /// </summary>
  12. public enum BoundsSpecified {
  13. All = 15,
  14. Height = 8,
  15. Location = 3,
  16. None = 0,
  17. Size = 12,
  18. Width = 4,
  19. X = 1,
  20. Y = 2
  21. }
  22. }