Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

CsvDocumentImporterOptions.MaxRowCountToAutoDetectDelimiter Property

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

Namespace: DevExpress.XtraSpreadsheet.Import

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

Declaration

[DefaultValue(10)]
public override int MaxRowCountToAutoDetectDelimiter { get; set; }

Property Value

Type Default Description
Int32 10

An integer value that specifies the number of rows in the imported document to be read to autodetect a delimiter.

Property Paths

You can access this nested property as listed below:

Object Type Path to MaxRowCountToAutoDetectDelimiter
WorkbookImportOptions
.Csv .MaxRowCountToAutoDetectDelimiter

Remarks

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

See Also