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

31 lines
513 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Represents casing styles
/// </summary>
public enum StyleCase
{
/// <summary>
/// Both upper and lower case
/// </summary>
Mixed = 0,
/// <summary>
/// Only upper case
/// </summary>
Upper = 1,
/// <summary>
/// Only lower case
/// </summary>
Lower = 2,
}
}