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

11 lines
133 B
C#

namespace CPF.Mac.AppKit
{
public enum NSTickMarkPosition : ulong
{
Below = 0uL,
Above = 1uL,
Left = 1uL,
Right = 0uL
}
}