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

16 lines
229 B
C#

using CPF.Mac.ObjCRuntime;
using System;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
[Flags]
public enum CTFontOptions
{
Default = 0x0,
PreventAutoActivation = 0x1,
PreferSystemFont = 0x4,
IncludeDisabled = 0x80
}
}