mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-19 07:44:49 +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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|