VerticalAlign.cs 490 B

1234567891011121314151617181920212223242526
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: VerticalAlign
  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. using System.ComponentModel;
  14. namespace System.Web.UI.WebControls
  15. {
  16. [TypeConverter(typeof(VerticalAlignConverter))]
  17. public enum VerticalAlign
  18. {
  19. NotSet,
  20. Top,
  21. Middle,
  22. Bottom
  23. }
  24. }