mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +08:00
23 lines
383 B
C#
23 lines
383 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureNumberSpacing : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
MonospacedNumbers,
|
|
ProportionalNumbers,
|
|
ThirdWidthNumbers,
|
|
QuarterWidthNumbers
|
|
}
|
|
|
|
public Selector Feature => Feature;
|
|
|
|
public CTFontFeatureNumberSpacing(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|