mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +08:00
21 lines
392 B
C#
21 lines
392 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureLinguisticRearrangementConnection : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
LinguisticRearrangementOn,
|
|
LinguisticRearrangementOff
|
|
}
|
|
|
|
public Selector Feature => Feature;
|
|
|
|
public CTFontFeatureLinguisticRearrangementConnection(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|