ErrorIconAlignment.cs 633 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Windows.Forms.ErrorIconAlignment.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 constants indicating the locations that an error icon can appear
  13. /// in relation to the control with an error.
  14. /// </summary>
  15. //[Serializable]
  16. public enum ErrorIconAlignment {
  17. //Values were verified with enumcheck.
  18. TopLeft = 0,
  19. TopRight = 1,
  20. MiddleLeft = 2,
  21. MiddleRight = 3,
  22. BottomLeft = 4,
  23. BottomRight = 5,
  24. }
  25. }