FontFWEnum.cs 640 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMFConverter.Gdi
  7. {
  8. /// <summary>
  9. /// Font Weight Enum.
  10. /// </summary>
  11. public enum FontFWEnum
  12. {
  13. FW_DONTCARE = 0,
  14. FW_THIN = 100,
  15. FW_EXTRALIGHT = 200,
  16. FW_ULTRALIGHT = 200,
  17. FW_LIGHT = 300,
  18. FW_NORMAL = 400,
  19. FW_REGULAR = 400,
  20. FW_MEDIUM = 500,
  21. FW_SEMIBOLD = 600,
  22. FW_DEMIBOLD = 600,
  23. FW_BOLD = 700,
  24. FW_EXTRABOLD = 800,
  25. FW_ULTRABOLD = 800,
  26. FW_HEAVY = 900,
  27. FW_BLACK = 900,
  28. }
  29. }