38 lines
701 B
C#
38 lines
701 B
C#
#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,
|
|
}
|
|
}
|