CPF/CPF.Mac/Mac/CoreText/CTFrameProgression.cs

14 lines
183 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using CPF.Mac.ObjCRuntime;
using System;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
[Flags]
public enum CTFrameProgression : uint
{
TopToBottom = 0x0,
RightToLeft = 0x1
}
}