TextAlign.cs 358 B

1234567891011121314151617181920
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: TextAlign
  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 TextAlign
  15. {
  16. Left = 1,
  17. Right
  18. }
  19. }