Skip to main content

CsvNewlineType Enum

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

Namespace: DevExpress.DataAccess.Excel

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

[ResourceFinder(typeof(ResFinder))]
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