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

26 lines
449 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureTextSpacing : CTFontFeatureSelectors
{
public enum Selector
{
ProportionalText,
MonospacedText,
HalfWidthText,
ThirdWidthText,
QuarterWidthText,
AltProportionalText,
AltHalfWidthText
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureTextSpacing(NSDictionary dictionary)
: base(dictionary)
{
}
}
}