pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/LineWrappingIndentMode.cs

33 lines
951 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#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
}
}