mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-08-27 11:07:05 +08:00
25 lines
474 B
C#
25 lines
474 B
C#
|
|
using CPF.Mac.Foundation;
|
||
|
|
|
||
|
|
namespace CPF.Mac.CoreText
|
||
|
|
{
|
||
|
|
public class CTFontFeatureIdeographicAlternatives : CTFontFeatureSelectors
|
||
|
|
{
|
||
|
|
public enum Selector
|
||
|
|
{
|
||
|
|
NoIdeographicAlternatives,
|
||
|
|
IdeographicAltOne,
|
||
|
|
IdeographicAltTwo,
|
||
|
|
IdeographicAltThree,
|
||
|
|
IdeographicAltFour,
|
||
|
|
IdeographicAltFive
|
||
|
|
}
|
||
|
|
|
||
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
||
|
|
|
||
|
|
public CTFontFeatureIdeographicAlternatives(NSDictionary dictionary)
|
||
|
|
: base(dictionary)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|