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

25 lines
437 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
public enum ModificationFlags
{
InsertText = 0x1,
DeleteText = 0x2,
ChangeStyle = 0x4,
ChangeFold = 0x8,
User = 0x10,
Undo = 0x20,
Redo = 0x40,
StepInUndoRedo = 0x100,
ChangeMarker = 0x200,
BeforeInsert = 0x400,
BeforeDelete = 0x800,
}
}