mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +08:00
22 lines
370 B
C#
22 lines
370 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureUpperCase : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
DefaultUpperCase,
|
|
UpperCaseSmallCaps,
|
|
UpperCasePetiteCaps
|
|
}
|
|
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
|
|
|
public CTFontFeatureUpperCase(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|