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

SpreadsheetCsvImportOptions.MaxRowCountToAutoDetectDelimiter Property

Gets or sets the number of rows that should be analyzed to automatically detect the character separating values in the CSV file. This is a dependency property.

Namespace: DevExpress.Xpf.Spreadsheet

Assembly: DevExpress.Xpf.Spreadsheet.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Spreadsheet, DevExpress.Wpf.Spreadsheet

Declaration

public int MaxRowCountToAutoDetectDelimiter { get; set; }

Property Value

Type Description
Int32

An integer value that is the number of rows used to autodetect a delimiter. The default value is 10.

Property Paths

You can access this nested property as listed below:

Object Type Path to MaxRowCountToAutoDetectDelimiter
SpreadsheetImportOptions
.Csv .MaxRowCountToAutoDetectDelimiter

Remarks

To explicitly specify a character that separates values in the imported CSV document, use the SpreadsheetCsvImportOptions.Delimiter property.

See Also