23 lines
430 B
C#
23 lines
430 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureCaseSensitiveLayout : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
CaseSensitiveLayoutOn,
|
|
CaseSensitiveLayoutOff,
|
|
CaseSensitiveSpacingOn,
|
|
CaseSensitiveSpacingOff
|
|
}
|
|
|
|
public Selector Feature => (Selector)base.FeatureWeak;
|
|
|
|
public CTFontFeatureCaseSensitiveLayout(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|