#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// The style of visual indicator that the caret displayes.
///
public enum CaretStyle
{
///
/// The caret is not displayed
///
Invisible = 0,
///
/// A vertical line is displayed
///
Line = 1,
///
/// A horizontal block is displayed that may cover the character.
///
Block = 2
}
}