HorizontalAlign.cs 400 B

1234567891011121314151617181920212223
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: HorizontalAlign
  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 HorizontalAlign
  15. {
  16. NotSet,
  17. Left,
  18. Center,
  19. Right,
  20. Justify
  21. }
  22. }