Skip to main content

CsvDocumentImporterOptions.AutoDetectDelimiter Property

Gets or sets a value indicating whether to automatically detect a character separating values in the CSV file.

Namespace: DevExpress.XtraSpreadsheet.Import

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

[DefaultValue(true)]
public override bool AutoDetectDelimiter { get; set; }

Property Value

Type Default Description
Boolean true

true, to autodetect a delimiter; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AutoDetectDelimiter
WorkbookImportOptions
.Csv .AutoDetectDelimiter

Remarks

Use the CsvDocumentImporterOptions.MaxRowCountToAutoDetectDelimiter property to specify the number of rows that should be analyzed to automatically detect a character separating values in the CSV file. The default value is 10.

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

If the AutoDetectDelimiter property is false and the CsvDocumentImporterOptions.Delimiter value is not specified, the importer uses a delimiter corresponding to the current culture.

See Also