mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 16:50:45 +08:00
25 lines
409 B
C#
25 lines
409 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureStyleOptions : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
NoStyleOptions,
|
|
DisplayText,
|
|
EngravedText,
|
|
IlluminatedCaps,
|
|
TitlingCaps,
|
|
TallCaps
|
|
}
|
|
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
|
|
|
public CTFontFeatureStyleOptions(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|