FontFFEnum.cs 400 B

123456789101112131415161718192021
  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 Family Enum.
  10. /// </summary>
  11. public enum FontFFEnum
  12. {
  13. FF_DONTCARE = 0,
  14. FF_ROMAN = 16,
  15. FF_SWISS = 32,
  16. FF_MODERN = 48,
  17. FF_SCRIPT = 64,
  18. FF_DECORATIVE = 80,
  19. }
  20. }