mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 17:48:18 +08:00
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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|