DelimitedTextEditOptions

DelimitedTextEditOptions class

Options for loading text-based Spreadsheet documents (CSV, Tab-based etc.), that use a separator (delimiter)

public sealed class DelimitedTextEditOptions : IEditOptions

Constructors

Name Description
DelimitedTextEditOptions(string) Creates an instance of options class for delimited text with mandatory separator (delimiter)

Properties

Name Description
ConvertDateTimeData { get; set; } Gets or sets a value that indicates whether the string in text-based document is converted to the date data. Default is false.
ConvertNumericData { get; set; } Gets or sets a value that indicates whether the string in text-based document is converted to numeric data. Default is false.
OptimizeMemoryUsage { get; set; } Enables memory optimization mechanisms during input document processing, which may degrade performance in some special cases, but on the other hand decrease memory usage. Useful when processing huge documents and facing OutOfMemoryException. Default is false (memory optimization is disabled for the sake of better performance).
Separator { get; set; } Allows to specify a string separator (delimiter) for text-based Spreadsheet documents
TreatConsecutiveDelimitersAsOne { get; set; } Defines whether consecutive delimiters should be treated as one. By default is false.

Remarks

https://en.wikipedia.org/wiki/Delimiter-separated_values

See Also