mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 16:50:45 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|