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

31 lines
542 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// How long lines are visually indicated
/// </summary>
public enum EdgeMode
{
/// <summary>
/// No indication
/// </summary>
None = 0,
/// <summary>
/// A vertical line is displayed
/// </summary>
Line = 1,
/// <summary>
/// The background color changes
/// </summary>
Background = 2,
}
}