corelibraries-devexpress-dot-dataaccess-dot-excel-6b565c3a.md
Lists characters used to identify a new line in a CSV document.
Namespace : DevExpress.DataAccess.Excel
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
[ResourceFinder(typeof(ResFinder))]
public enum CsvNewlineType
<ResourceFinder(GetType(ResFinder))>
Public Enum CsvNewlineType
| Name | Description |
|---|---|
CRLF |
A carriage return/linefeed character combination.
|
| LF |
A line feed character.
|
| CR |
A carriage return character.
|
| LFCR |
A carriage linefeed/return character combination.
|
| VT |
A vertical tab character.
|
| FF |
A form feed character for the print function.
|
The following properties accept/return CsvNewlineType values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | CsvSourceOptions.NewlineType |
| WPF Controls | ExcelSourceOptionsViewModel.NewlineType |
Values listed in this enumeration are used to set the CsvSourceOptions.NewlineType property.
See Also