123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMFConverter.Gdi
- {
- /// <summary>
- /// Pitch Enum.
- /// </summary>
- public enum FontPitchEnum
- {
- DEFAULT_PITCH = 0,
- FIXED_PITCH = 1,
- VARIABLE_PITCH = 2,
- }
- }
|