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

33 lines
951 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Specifies how wrapped lines are indented when line wrapping is enabled in a <see cref="Scintilla" /> control.
/// </summary>
public enum LineWrappingIndentMode
{
/// <summary>
/// Wrapped lines are aligned on the left and indented by the amount
/// spcified in the <see cref="LineWrapping.Indent" /> property.
/// </summary>
Fixed = NativeMethods.SC_WRAPINDENT_FIXED,
/// <summary>
/// Wrapped lines are aligned to the first subline indent.
/// </summary>
Same = NativeMethods.SC_WRAPINDENT_SAME,
/// <summary>
/// Wrapped lines are aligned to the first subline indent plus
/// one more level of indentation.
/// </summary>
Indent = NativeMethods.SC_WRAPINDENT_INDENT
}
}