Skip to main content

SpreadsheetTxtImportOptions.AutoDetectDelimiter Property

Gets or sets a value indicating whether to automatically detect a character separating values in the text file. This is a dependency property.

Namespace: DevExpress.Xpf.Spreadsheet

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

NuGet Package: DevExpress.Wpf.Spreadsheet

Declaration

public bool AutoDetectDelimiter { get; set; }

Property Value

Type Description
Boolean

true, to autodetect a delimiter; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AutoDetectDelimiter
SpreadsheetImportOptions
.Txt .AutoDetectDelimiter

Remarks

Use the SpreadsheetTxtImportOptions.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 document, use the SpreadsheetTxtImportOptions.Delimiter property.

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

See Also