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