pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/LineWrappingMode.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

31 lines
691 B
C#

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