Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public FixedWidthTextOptions(
int[] columnBreaks,
IFormatProvider formatProvider,
bool rowHeaders,
bool columnHeaders,
int startRow,
Type decimalType,
int inferenceRows
)
Public Sub New (
columnBreaks As Integer(),
formatProvider As IFormatProvider,
rowHeaders As Boolean,
columnHeaders As Boolean,
startRow As Integer,
decimalType As Type,
inferenceRows As Integer
)
public:
FixedWidthTextOptions(
array<int>^ columnBreaks,
IFormatProvider^ formatProvider,
bool rowHeaders,
bool columnHeaders,
int startRow,
Type^ decimalType,
int inferenceRows
)
new :
columnBreaks : int[] *
formatProvider : IFormatProvider *
rowHeaders : bool *
columnHeaders : bool *
startRow : int *
decimalType : Type *
inferenceRows : int -> FixedWidthTextOptions
Parameters
- columnBreaks
- Type: SystemInt32
An integer array containing the zero-based indexes of the column breaks on each row. - 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 1-based row which contains the start of the data. - decimalType
- Type: SystemType
The type to use for numbers containing decimals. - inferenceRows
- Type: SystemInt32
The number of rows to use to infer the types
of the columns.
Reference