mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +08:00
24 lines
401 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|