ImageAlign.cs 450 B

12345678910111213141516171819202122232425262728
  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. * Status: 100%
  9. *
  10. * (C) Gaurav Vaish (2001)
  11. */
  12. namespace System.Web.UI.WebControls
  13. {
  14. public enum ImageAlign
  15. {
  16. NotSet,
  17. Left,
  18. Right,
  19. BaseLine,
  20. Top,
  21. Middle,
  22. Bottom,
  23. AbsBottom,
  24. AbsMiddle,
  25. TextTop
  26. }
  27. }