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

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