mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +08:00
22 lines
362 B
C#
22 lines
362 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureFractions : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
NoFractions,
|
|
VerticalFractions,
|
|
DiagonalFractions
|
|
}
|
|
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
|
|
|
public CTFontFeatureFractions(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|