mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 10:08:26 +08:00
初始化
This commit is contained in:
29
CPF.Mac/Mac/CoreText/CTFontFeatureAnnotation.cs
Normal file
29
CPF.Mac/Mac/CoreText/CTFontFeatureAnnotation.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user