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

31 lines
542 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
{
/// <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,
}
}