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

30 lines
569 B
C#

using CPF.Mac.Foundation;
namespace CPF.Mac.CoreText
{
public class CTFontFeatureAnnotation : CTFontFeatureSelectors
{
public enum Selector
{
NoAnnotation,
BoxAnnotation,
RoundedBoxAnnotation,
CircleAnnotation,
InvertedCircleAnnotation,
ParenthesisAnnotation,
PeriodAnnotation,
RomanNumeralAnnotation,
DiamondAnnotation,
InvertedBoxAnnotation,
InvertedRoundedBoxAnnotation
}
public Selector Feature => (Selector)base.FeatureWeak;
public CTFontFeatureAnnotation(NSDictionary dictionary)
: base(dictionary)
{
}
}
}