mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 10:42:00 +08:00
14 lines
183 B
C#
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
|
||
|
}
|
||
|
}
|