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

36 lines
660 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Style of smart indent
/// </summary>
public enum SmartIndent
{
/// <summary>
/// No smart indent
/// </summary>
None = 0,
/// <summary>
/// C++ style indenting
/// </summary>
CPP = 1,
/// <summary>
/// Alternate C++ style indenting
/// </summary>
CPP2 = 4,
/// <summary>
/// Block indenting, the last indentation is retained in new lines
/// </summary>
Simple = 2
}
}