mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-08-27 19:17:05 +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)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|