pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/CaretStyle.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

31 lines
607 B
C#

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