ImageAlign.cs 474 B

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