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

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