#region Using Directives using System; #endregion Using Directives namespace ScintillaNET { /// /// Specifies the locations of line wrapping visual glyphs in a control. /// [Flags] public enum LineWrappingVisualFlagsLocations { /// /// Line wrapping glyphs are drawn near the control border. /// Default = NativeMethods.SC_WRAPVISUALFLAGLOC_DEFAULT, /// /// Line wrapping glyphs are drawn at the end of wrapped lines near the text. /// EndByText = NativeMethods.SC_WRAPVISUALFLAGLOC_END_BY_TEXT, /// /// Line wrapping glyphs are drawn at the start of wrapped lines near the text. /// StartByText = NativeMethods.SC_WRAPVISUALFLAGLOC_START_BY_TEXT, } }