mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 16:50:45 +08:00
30 lines
569 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|