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)
|
|
{
|
|
}
|
|
}
|
|
}
|