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