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

NewlineType Enum

Lists character sequences used to represent a new line.

Namespace: DevExpress.XtraSpreadsheet.Import

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public enum NewlineType

#Members

Name Description
CrLf

CR+LF, ‘\r\n’, 0x0D0A ASCII character sequence.

Lf

LF, 0x0A ASCII character.

Cr

CR, ‘\r’, 0x0D ASCII character.

LfCr

LF+CR, 0x0A0D ASCII character sequence.

VerticalTab

Vertical Tab, 0x0B ASCII character.

FormFeed

FF, 0x0C ASCII character.

MsDos

CR+LF, ‘\r\n’, 0x0D0A ASCII character sequence.

Unix

LF, 0x0A ASCII character.

Auto

For import - the new line character sequence is determined automatically. For export - 0x0D0A ASCII character sequence.

AnyCrLf

For import - any of the 0x0A, 0x0D characters or their combinations. For export - 0x0D0A ASCII character sequence.

See Also