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

16 lines
210 B
C#

namespace CPF.Mac.AppKit
{
public enum NSTextMovement : ulong
{
Other = 0uL,
Return = 0x10,
Tab = 17uL,
Backtab = 18uL,
Left = 19uL,
Right = 20uL,
Up = 21uL,
Down = 22uL,
Cancel = 23uL
}
}