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

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,
}
}