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

31 lines
588 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureMathematicalExtras : CTFontFeatureSelectors
{
public enum Selector
{
HyphenToMinusOn,
HyphenToMinusOff,
AsteriskToMultiplyOn,
AsteriskToMultiplyOff,
SlashToDivideOn,
SlashToDivideOff,
InequalityLigaturesOn,
InequalityLigaturesOff,
ExponentsOn,
ExponentsOff,
MathematicalGreekOn,
MathematicalGreekOff
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureMathematicalExtras(NSDictionary dictionary)
: base(dictionary)
{
}
}
}