23 lines
403 B
C#
23 lines
403 B
C#
![]() |
using CPF.Mac.Foundation;
|
||
|
|
||
|
namespace CPF.Mac.CoreText
|
||
|
{
|
||
|
public class CTFontFeatureCJKRomanSpacing : CTFontFeatureSelectors
|
||
|
{
|
||
|
public enum Selector
|
||
|
{
|
||
|
HalfWidthCJKRoman,
|
||
|
ProportionalCJKRoman,
|
||
|
DefaultCJKRoman,
|
||
|
FullWidthCJKRoman
|
||
|
}
|
||
|
|
||
|
public Selector Feature => (Selector)base.FeatureWeak;
|
||
|
|
||
|
public CTFontFeatureCJKRomanSpacing(NSDictionary dictionary)
|
||
|
: base(dictionary)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|