mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 01:46:22 +08:00
26 lines
478 B
C#
26 lines
478 B
C#
![]() |
using CPF.Mac.Foundation;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreText
|
||
|
{
|
||
|
public class CTFontFeatureRubyKana : CTFontFeatureSelectors
|
||
|
{
|
||
|
public enum Selector
|
||
|
{
|
||
|
[Obsolete("Deprecated. Use RubyKanaOn instead")]
|
||
|
NoRubyKana,
|
||
|
[Obsolete("Deprecated. Use RubyKanaOff instead")]
|
||
|
RubyKana,
|
||
|
RubyKanaOn,
|
||
|
RubyKanaOff
|
||
|
}
|
||
|
|
||
|
public Selector Feature => (Selector)base.FeatureWeak;
|
||
|
|
||
|
public CTFontFeatureRubyKana(NSDictionary dictionary)
|
||
|
: base(dictionary)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|