Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public FixedWidthTextOptions(
int[] columnBreaks,
IFormatProvider formatProvider = null,
bool rowHeaders = false,
bool columnHeaders = true,
int startRow = 0,
Type decimalType = null,
int inferenceRows = 100,
AutoCategorization autoCategorize = AutoCategorization.None,
int maxCategories = 100
)
Public Sub New (
columnBreaks As Integer(),
Optional formatProvider As IFormatProvider = Nothing,
Optional rowHeaders As Boolean = false,
Optional columnHeaders As Boolean = true,
Optional startRow As Integer = 0,
Optional decimalType As Type = Nothing,
Optional inferenceRows As Integer = 100,
Optional autoCategorize As AutoCategorization = AutoCategorization.None,
Optional maxCategories As Integer = 100
)
public:
FixedWidthTextOptions(
array<int>^ columnBreaks,
IFormatProvider^ formatProvider = nullptr,
bool rowHeaders = false,
bool columnHeaders = true,
int startRow = 0,
Type^ decimalType = nullptr,
int inferenceRows = 100,
AutoCategorization autoCategorize = AutoCategorization::None,
int maxCategories = 100
)
new :
columnBreaks : int[] *
?formatProvider : IFormatProvider *
?rowHeaders : bool *
?columnHeaders : bool *
?startRow : int *
?decimalType : Type *
?inferenceRows : int *
?autoCategorize : AutoCategorization *
?maxCategories : int
(* Defaults:
let _formatProvider = defaultArg formatProvider null
let _rowHeaders = defaultArg rowHeaders false
let _columnHeaders = defaultArg columnHeaders true
let _startRow = defaultArg startRow 0
let _decimalType = defaultArg decimalType null
let _inferenceRows = defaultArg inferenceRows 100
let _autoCategorize = defaultArg autoCategorize AutoCategorization.None
let _maxCategories = defaultArg maxCategories 100
*)
-> FixedWidthTextOptions
Parameters
- columnBreaks
- Type: SystemInt32
An integer array containing the zero-based indexes of the column breaks on each row. - formatProvider (Optional)
- Type: SystemIFormatProvider
An IFormatProvider that is used
in the conversion between text and other data types. - rowHeaders (Optional)
- Type: SystemBoolean
Indicates that the first column contains row headers. - columnHeaders (Optional)
- Type: SystemBoolean
Indicates that the first row contains column headers. - startRow (Optional)
- Type: SystemInt32
An integer specifying the 1-based row which contains the start of the data. - decimalType (Optional)
- Type: SystemType
The type to use for numbers containing decimals. - inferenceRows (Optional)
- Type: SystemInt32
The number of rows to use to infer the types
of the columns. - autoCategorize (Optional)
- Type: Extreme.DataAutoCategorization
Specifies which columns should be
automatically converted to categorical columns. - maxCategories (Optional)
- Type: SystemInt32
The largest number of distinct
levels for a column to be considered categorical.
Reference