初始化

This commit is contained in:
xhm
2023-11-21 23:05:03 +08:00
commit 2455630dad
2252 changed files with 466529 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
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)
{
}
}
}