mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 10:42:00 +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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|