FontSize.cs 455 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: FontSize
  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 FontSize
  15. {
  16. NotSet,
  17. AsUnit,
  18. Smaller,
  19. Larger,
  20. XXSmall,
  21. XSmall,
  22. Small,
  23. Medium,
  24. Large,
  25. XLarge,
  26. XXLarge
  27. }
  28. }