TextAlign.cs 324 B

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