mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 16:50:45 +08:00
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)
|
|
{
|
|
}
|
|
}
|
|
}
|