16 lines
210 B
C#
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
|
|
}
|
|
}
|