pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/KeyMod.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

18 lines
208 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
public enum KeyMod
{
Norm = 0,
Shift = 1,
Ctrl = 2,
Alt = 4,
}
}