pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/CaretPolicy.cs

18 lines
228 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
public enum CaretPolicy
{
Slop = 0x01,
Strict = 0x04,
Jumps = 0x10,
Even = 0x08,
}
}