26 lines
471 B
C#
26 lines
471 B
C#
|
|
#region Using Directives
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
#endregion Using Directives
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace ScintillaNET
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Common predefined styles that are always valid with any lexer.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum StylesCommon
|
|||
|
|
{
|
|||
|
|
Default = 32,
|
|||
|
|
LineNumber = 33,
|
|||
|
|
BraceLight = 34,
|
|||
|
|
BraceBad = 35,
|
|||
|
|
ControlChar = 36,
|
|||
|
|
IndentGuide = 37,
|
|||
|
|
CallTip = 38,
|
|||
|
|
LastPredefined = 39,
|
|||
|
|
Max = 127,
|
|||
|
|
}
|
|||
|
|
}
|