#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Specifies the display mode of whitespace characters.
///
public enum WhitespaceMode
{
///
/// The normal display mode with whitespace displayed as an empty background color.
///
Invisible = 0,
///
/// Whitespace characters are drawn as dots and arrows.
///
VisibleAlways = 1,
///
/// Whitespace used for indentation is displayed normally but after the first visible character, it is shown as dots and arrows.
///
VisibleAfterIndent = 2,
}
}