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

31 lines
558 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Document's EndOfLine Mode
/// </summary>
public enum EndOfLineMode
{
/// <summary>
/// Carriage Return + Line Feed (Windows Style)
/// </summary>
Crlf = 0,
/// <summary>
/// Carriage Return Only (Mac Style)
/// </summary>
CR = 1,
/// <summary>
/// Line Feed Only (Unix Style)
/// </summary>
LF = 2,
}
}