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