ImageAlign.cs 416 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: ImageAlign
  4. *
  5. * Author: Gaurav Vaish
  6. * Contact: <[email protected]>, <[email protected]>
  7. * Status: 100%
  8. *
  9. * (C) Gaurav Vaish (2001)
  10. */
  11. namespace System.Web.UI.WebControls
  12. {
  13. public enum ImageAlign
  14. {
  15. NotSet,
  16. Left,
  17. Right,
  18. BaseLine,
  19. Top,
  20. Middle,
  21. Bottom,
  22. AbsBottom,
  23. AbsMiddle,
  24. TextTop
  25. }
  26. }