31 lines
607 B
C#
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
|
|||
|
|
}
|
|||
|
|
}
|