#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Specifies how line wrapping visual glyphs are displayed in a control.
///
[Flags]
public enum LineWrappingVisualFlags
{
///
/// No line wrapping glyphs are displayed.
///
None = NativeMethods.SC_WRAPVISUALFLAG_NONE,
///
/// Line wrapping glyphs are displayed at the end of wrapped lines.
///
End = NativeMethods.SC_WRAPVISUALFLAG_END,
///
/// Line wrapping glyphs are displayed at the start of wrapped lines. This also has
/// the effect of indenting the line by one additional unit to accommodate the glyph.
///
Start = NativeMethods.SC_WRAPVISUALFLAG_START,
}
}