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

16 lines
231 B
C#

using CPF.Mac.ObjCRuntime;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
public enum CTFontPriority : uint
{
System = 10000u,
Network = 20000u,
Computer = 30000u,
User = 40000u,
Dynamic = 50000u,
Process = 60000u
}
}