Skip to main content

TxtDocumentImporterOptions.MaxRowCountToAutoDetectDelimiter Property

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

Namespace: DevExpress.XtraSpreadsheet.Import

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

NuGet Package: DevExpress.Spreadsheet.Core

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
.Txt .MaxRowCountToAutoDetectDelimiter

Remarks

To explicitly specify a character that separates values in the imported text file, use the TxtDocumentImporterOptions.Delimiter property.

See Also