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