DelimitedTextOptions Class

Represents the options available when reading and writing delimited text files.

Definition

Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public class DelimitedTextOptions : TextOptions
Inheritance
Object  →  TextOptions  →  DelimitedTextOptions

Constructors

Properties

AutoCategorize Gets which columns in a data frame are automatically converted to categorical variables.
(Inherited from TextOptions)
ColumnDelimiter Gets the character used to separate columns.
ColumnHeaders Gets whether the first row contains column headers.
(Inherited from TextOptions)
Culture Gets the culture of the data file.
(Inherited from TextOptions)
DateTimeFormat Gets an object that specifies how numeric values are parsed and formatted.
(Inherited from TextOptions)
DecimalType Gets the type used to represent numbers with decimals.
(Inherited from TextOptions)
EndOfLine Gets the string used to terminate a line.
EscapeCharacter Gets the character used to escape quote values.
FormatProvider Gets an object that provides information on how to parse strings and format values.
(Inherited from TextOptions)
InferenceRows Gets the number of rows used to infer the type of columns.
(Inherited from TextOptions)
MaxCategories Gets the largest number of distinct levels for a column to be considered categorical.
(Inherited from TextOptions)
MergeConsecutiveDelimiters Gets the character used to separate columns.
NumberFormat Gets an object that specifies how dates and times are parsed and formatted.
(Inherited from TextOptions)
Quote Gets a QuoteUsage value that specifies when fields should be quoted.
QuoteCharacter Gets the character used to quote values.
QuoteEscapeMethod Gets the method used to represent the quote character in quoted fields.
RowHeaders Gets whether the first column contains row headers.
(Inherited from TextOptions)
StartRow Gets the 1-based index of the first row.
(Inherited from TextOptions)

Methods

CsvForCulture Represents the options for reading and writing CSV files using the specified culture's list separator.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetExcludedColumns Returns an array containing the indexes of the columns that are excluded from the matrix.
(Inherited from TextOptions)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
SetExcludedColumns Sets the columns that are to be excluded from the matrix.
(Inherited from TextOptions)
ToStringReturns a string that represents the current object.
(Inherited from Object)
WithAutoCategorization Returns an options object with the AutoCategorize and MaxCategories properties changed to the specified values.
WithColumnDelimiter Returns an options object with the ColumnDelimiter property changed to the specified value.
WithEndOfLine Returns an options object with the EndOfLine property changed to the specified value.
WithEscapeCharacter Returns an options object with the EscapeCharacter property changed to the specified value.
WithQuote Returns an options object with the Quote property changed to the specified value.
WithQuoteCharacter Returns an options object with the QuoteCharacter property changed to the specified value.
WithQuoteEscapeMethod Returns an options object with the QuoteEscapeMethod property changed to the specified value.

Fields

Csv Represents the options for reading and writing standard CSV files that include column headers.
CsvWithoutHeader Represents the options for reading and writing standard CSV files that do not include column headers.
Tsv Represents the options for reading and writing standard tab-separated values (TSV) files that include column headers.
TsvWithoutHeader Represents the options for reading and writing standard tab-separated values (TSV) files that do not include column headers.

See Also