CPF/CPF.Mac/Mac/AppKit/NSTickMarkPosition.cs

11 lines
133 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
namespace CPF.Mac.AppKit
{
public enum NSTickMarkPosition : ulong
{
Below = 0uL,
Above = 1uL,
Left = 1uL,
Right = 0uL
}
}