CPF/CPF.Mac/Mac/CoreText/CTFrameProgression.cs
2023-11-21 23:05:03 +08:00

14 lines
183 B
C#

using CPF.Mac.ObjCRuntime;
using System;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
[Flags]
public enum CTFrameProgression : uint
{
TopToBottom = 0x0,
RightToLeft = 0x1
}
}