mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-08-27 19:17:05 +08:00
26 lines
430 B
C#
26 lines
430 B
C#
|
|
using CPF.Mac.Foundation;
|
||
|
|
|
||
|
|
namespace CPF.Mac.CoreText
|
||
|
|
{
|
||
|
|
public class CTFontFeatureOrnamentSets : CTFontFeatureSelectors
|
||
|
|
{
|
||
|
|
public enum Selector
|
||
|
|
{
|
||
|
|
NoOrnaments,
|
||
|
|
Dingbats,
|
||
|
|
PiCharacters,
|
||
|
|
Fleurons,
|
||
|
|
DecorativeBorders,
|
||
|
|
InternationalSymbols,
|
||
|
|
MathSymbols
|
||
|
|
}
|
||
|
|
|
||
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
||
|
|
|
||
|
|
public CTFontFeatureOrnamentSets(NSDictionary dictionary)
|
||
|
|
: base(dictionary)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|