Skip to main content
A newer version of this page is available. .

CsvNewlineType Enum

Lists characters used to identify a new line in a CSV document.

Namespace: DevExpress.DataAccess.Excel

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public enum CsvNewlineType

Members

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.

Related API Members

The following properties accept/return CsvNewlineType values:

Library Related API Members
Cross-Platform Class Library CsvSourceOptions.NewlineType
WPF Controls ExcelSourceOptionsViewModel.NewlineType

Remarks

Values listed in this enumeration are used to set the CsvSourceOptions.NewlineType property.

See Also