mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
26 lines
449 B
C#
26 lines
449 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureTextSpacing : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
ProportionalText,
|
|
MonospacedText,
|
|
HalfWidthText,
|
|
ThirdWidthText,
|
|
QuarterWidthText,
|
|
AltProportionalText,
|
|
AltHalfWidthText
|
|
}
|
|
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
|
|
|
public CTFontFeatureTextSpacing(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|