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