CPF/CPF.Mac/Mac/CoreText/CTTextAlignment.cs

15 lines
166 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using CPF.Mac.ObjCRuntime;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
public enum CTTextAlignment : byte
{
Left,
Right,
Center,
Justified,
Natural
}
}