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

13 lines
182 B
C#

using System;
namespace CPF.Mac.AppKit
{
[Flags]
public enum NSGlyphStorageOptions : ulong
{
ShowControlGlyphs = 0x1,
ShowInvisibleGlyphs = 0x2,
WantsBidiLevels = 0x4
}
}