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

31 lines
607 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>
/// 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
}
}