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

31 lines
574 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureTypographicExtras : CTFontFeatureSelectors
{
public enum Selector
{
HyphensToEmDashOn,
HyphensToEmDashOff,
HyphenToEnDashOn,
HyphenToEnDashOff,
SlashedZeroOn,
SlashedZeroOff,
FormInterrobangOn,
FormInterrobangOff,
SmartQuotesOn,
SmartQuotesOff,
PeriodsToEllipsisOn,
PeriodsToEllipsisOff
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureTypographicExtras(NSDictionary dictionary)
: base(dictionary)
{
}
}
}