FontSize.cs 421 B

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