CPF/CPF.Mac/Mac/CoreText/CTFontFeatureLetterCase.cs

27 lines
434 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using CPF.Mac.Foundation;
using System;
namespace CPF.Mac.CoreText
{
[Obsolete("Deprecated")]
public class CTFontFeatureLetterCase : CTFontFeatureSelectors
{
public enum Selector
{
UpperAndLowerCase,
AllCaps,
AllLowerCase,
SmallCaps,
InitialCaps,
InitialCapsAndSmallCaps
}
public Selector Feature => Feature;
public CTFontFeatureLetterCase(NSDictionary dictionary)
: base(dictionary)
{
}
}
}