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

18 lines
208 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 KeyMod
{
Norm = 0,
Shift = 1,
Ctrl = 2,
Alt = 4,
}
}