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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|