mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +08:00
13 lines
182 B
C#
13 lines
182 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
[Flags]
|
|
public enum NSGlyphStorageOptions : ulong
|
|
{
|
|
ShowControlGlyphs = 0x1,
|
|
ShowInvisibleGlyphs = 0x2,
|
|
WantsBidiLevels = 0x4
|
|
}
|
|
}
|