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

23 lines
403 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureCJKRomanSpacing : CTFontFeatureSelectors
{
public enum Selector
{
HalfWidthCJKRoman,
ProportionalCJKRoman,
DefaultCJKRoman,
FullWidthCJKRoman
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureCJKRomanSpacing(NSDictionary dictionary)
: base(dictionary)
{
}
}
}