FontSize.cs 479 B

123456789101112131415161718192021222324252627282930
  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. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. namespace System.Web.UI.WebControls
  14. {
  15. public enum FontSize
  16. {
  17. NotSet,
  18. AsUnit,
  19. Smaller,
  20. Larger,
  21. XXSmall,
  22. XSmall,
  23. Small,
  24. Medium,
  25. Large,
  26. XLarge,
  27. XXLarge
  28. }
  29. }