#region Using Directives using System; #endregion Using Directives namespace ScintillaNET { /// /// Specifies the line wrapping modes that can be applied to a control. /// public enum LineWrappingMode { /// /// Line wrapping is disabled. /// None = NativeMethods.SC_WRAP_NONE, /// /// Lines wrap on word boundaries. /// Word = NativeMethods.SC_WRAP_WORD, /// /// Lines wrap between characters. /// Char = NativeMethods.SC_WRAP_CHAR, } }