mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 19:37:38 +08:00
24 lines
400 B
C#
24 lines
400 B
C#
![]() |
using CPF.Mac.Foundation;
|
||
|
|
||
|
namespace CPF.Mac.CoreText
|
||
|
{
|
||
|
public class CTFontFeatureVerticalPosition : CTFontFeatureSelectors
|
||
|
{
|
||
|
public enum Selector
|
||
|
{
|
||
|
NormalPosition,
|
||
|
Superiors,
|
||
|
Inferiors,
|
||
|
Ordinals,
|
||
|
ScientificInferiors
|
||
|
}
|
||
|
|
||
|
public Selector Feature => (Selector)base.FeatureWeak;
|
||
|
|
||
|
public CTFontFeatureVerticalPosition(NSDictionary dictionary)
|
||
|
: base(dictionary)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|