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

14 lines
181 B
C#

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