mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
22 lines
350 B
C#
22 lines
350 B
C#
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
public class CTFontFeatureCursiveConnection : CTFontFeatureSelectors
|
|
{
|
|
public enum Selector
|
|
{
|
|
Unconnected,
|
|
PartiallyConnected,
|
|
Cursive
|
|
}
|
|
|
|
public Selector Feature => Feature;
|
|
|
|
public CTFontFeatureCursiveConnection(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|