CPF/CPF.Mac/Mac/CoreText/CTFontFeatureAllTypographicFeatures.cs

21 lines
373 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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)
{
}
}
}