TextOptions Class

Represents the options available when reading and writing text files.

Definition

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

Constructors

TextOptions(IFormatProvider, Boolean, Boolean, Int32, Int32, Type)Constructs a new set of options for delimited text files.
TextOptions(IFormatProvider, Boolean, Boolean, Int32, Int32, Type, AutoCategorization, Int32)Constructs a new set of options for delimited text files.

Properties

AutoCategorize Gets which columns in a data frame are automatically converted to categorical variables.
ColumnHeaders Gets whether the first row contains column headers.
Culture Gets the culture of the data file.
DateTimeFormat Gets an object that specifies how numeric values are parsed and formatted.
DecimalType Gets the type used to represent numbers with decimals.
FormatProvider Gets an object that provides information on how to parse strings and format values.
InferenceRows Gets the number of rows used to infer the type of columns.
MaxCategories Gets the largest number of distinct levels for a column to be considered categorical.
NumberFormat Gets an object that specifies how dates and times are parsed and formatted.
RowHeaders Gets whether the first column contains row headers.
StartRow Gets the 1-based index of the first row.

Methods

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.
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.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also