Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ExcelSourceOptionsViewModel.NewlineType Property

Specifies the character used to identify a new line in a CSV document.

Namespace: DevExpress.Xpf.DataAccess.DataSourceWizard

Assembly: DevExpress.Xpf.DataAccess.v24.2.dll

NuGet Package: DevExpress.Wpf.Reporting

#Declaration

public CsvNewlineType NewlineType { get; set; }

#Property Value

Type Description
CsvNewlineType

A CsvNewlineType enumeration value, specifying the character used to identify a new line in a CSV document.

Available values:

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.

#Remarks

Use the ExcelSourceOptionsViewModel.DetectNewlineType property to specify whether the character used to identify a new line is automatically determined.

See Also