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

38 lines
701 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>
/// The CharacterSet used by the document
/// </summary>
public enum CharacterSet
{
Ansi = 0,
Default = 1,
Baltic = 186,
Chinesebig5 = 136,
EastEurope = 238,
Gb2312 = 134,
Greek = 161,
Hangul = 129,
Mac = 77,
Oem = 255,
Russian = 204,
Cyrillic = 1251,
ShiftJis = 128,
Symbol = 2,
Turkish = 162,
Johab = 130,
Hebrew = 177,
Arabic = 178,
Vietnamese = 163,
Thai = 222,
CharSet885915 = 1000,
}
}