Constructs a new set of options for delimited text files.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public TextOptions(
IFormatProvider formatProvider,
bool rowHeaders,
bool columnHeaders,
int startRow,
int inferenceRows,
Type decimalType
)
Public Sub New (
formatProvider As IFormatProvider,
rowHeaders As Boolean,
columnHeaders As Boolean,
startRow As Integer,
inferenceRows As Integer,
decimalType As Type
)
public:
TextOptions(
IFormatProvider^ formatProvider,
bool rowHeaders,
bool columnHeaders,
int startRow,
int inferenceRows,
Type^ decimalType
)
new :
formatProvider : IFormatProvider *
rowHeaders : bool *
columnHeaders : bool *
startRow : int *
inferenceRows : int *
decimalType : Type -> TextOptions
Parameters
- formatProvider
- Type: SystemIFormatProvider
An IFormatProvider that is used
in the conversion between text and other data types. - rowHeaders
- Type: SystemBoolean
Indicates that the first column contains row headers. - columnHeaders
- Type: SystemBoolean
Indicates that the first row contains column headers. - startRow
- Type: SystemInt32
An integer specifying the 0-based row which contains the start of the data. - inferenceRows
- Type: SystemInt32
The number of rows to use to infer the types
of the columns. - decimalType
- Type: SystemType
The type to use for numbers containing decimals.
Reference