HorizontalAlign.cs 366 B

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