21 lines
369 B
C#
21 lines
369 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureOverlappingCharacters : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
PreventOverlapOn,
|
|
PreventOverlapOff
|
|
}
|
|
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
|
|
|
public CTFontFeatureOverlappingCharacters(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|