CPF/CPF.Mac/Mac/CoreText/CTFontFeatureDesignComplexity.cs
2023-11-21 23:05:03 +08:00

24 lines
401 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureDesignComplexity : CTFontFeatureSelectors
{
public enum Selector
{
DesignLevel1,
DesignLevel2,
DesignLevel3,
DesignLevel4,
DesignLevel5
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureDesignComplexity(NSDictionary dictionary)
: base(dictionary)
{
}
}
}