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