#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Style of Indicator to be displayed
///
public enum IndicatorStyle
{
///
/// Underline
///
Plain = 0,
///
/// Squigly lines (commonly used for spellcheck)
///
Squiggle = 1,
///
/// Small t's are displayed
///
TT = 2,
///
/// Small diagnol lines
///
Diagonal = 3,
///
/// Strikethrough line
///
Strike = 4,
///
/// Hidden
///
Hidden = 5,
///
/// Displayes a bounding box around the indicated text
///
Box = 6,
///
/// Displayes a bounding box around the indicated text with rounded corners
/// and an translucent background color
///
RoundBox = 7,
}
}