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

31 lines
770 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 the display mode of whitespace characters.
/// </summary>
public enum WhitespaceMode
{
/// <summary>
/// The normal display mode with whitespace displayed as an empty background color.
/// </summary>
Invisible = 0,
/// <summary>
/// Whitespace characters are drawn as dots and arrows.
/// </summary>
VisibleAlways = 1,
/// <summary>
/// Whitespace used for indentation is displayed normally but after the first visible character, it is shown as dots and arrows.
/// </summary>
VisibleAfterIndent = 2,
}
}