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

21 lines
373 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureAllTypographicFeatures : CTFontFeatureSelectors
{
public enum Selector
{
AllTypeFeaturesOn,
AllTypeFeaturesOff
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureAllTypographicFeatures(NSDictionary dictionary)
: base(dictionary)
{
}
}
}