[]
Parses a column of cells that contain text into several columns.
ActionResult<object> TextToColumns(int row = -1, int column = -1, TextParsingType dataType = TextParsingType.Delimited, TextQualifier textQualifier = TextQualifier.None, bool consecutiveDelimiter = false, bool tab = false, bool semicolon = false, bool comma = false, bool space = false, bool other = false, char otherChar = '\0', Tuple<int, ColumnDataType>[] fieldInfo = null, char decimalSeparator = '\0', char thousandsSeparator = '\0', bool trailingMinusNumbers = false)
Function TextToColumns(Optional row As Integer = -1, Optional column As Integer = -1, Optional dataType As TextParsingType = TextParsingType.Delimited, Optional textQualifier As TextQualifier = TextQualifier.None, Optional consecutiveDelimiter As Boolean = False, Optional tab As Boolean = False, Optional semicolon As Boolean = False, Optional comma As Boolean = False, Optional space As Boolean = False, Optional other As Boolean = False, Optional otherChar As Char = vbNullChar, Optional fieldInfo As Tuple(Of Integer, ColumnDataType)() = Nothing, Optional decimalSeparator As Char = vbNullChar, Optional thousandsSeparator As Char = vbNullChar, Optional trailingMinusNumbers As Boolean = False) As ActionResult(Of Object)
Type | Name | Description |
---|---|---|
int | row | An integer value that specifies the row where Spread will place the results. |
int | column | An integer value that specifies the column where Spread will place the results. |
TextParsingType | dataType | The format of the text to be split into columns. |
TextQualifier | textQualifier | Specifies whether to use single, double, or no quotes as the text qualifier. |
bool | consecutiveDelimiter | True to have Spread consider consecutive delimiters as one delimiter. The default value is False. |
bool | tab |
|
bool | semicolon |
|
bool | comma |
|
bool | space |
|
bool | other |
|
char | otherChar | Required if |
Tuple<int, ColumnDataType>[] | fieldInfo | An array containing parse information for the individual columns of data. The interpretation depends on the value of |
char | decimalSeparator | The decimal separator that Spread uses when recognizing numbers. The default setting is the system setting. |
char | thousandsSeparator | The thousands separator that Spread uses when recognizing numbers. The default setting is the system setting. |
bool | trailingMinusNumbers | Numbers that begin with a minus character. |
Type | Description |
---|---|
ActionResult<object> |
|
Parses a column of cells that contain text into several columns.
ActionResult<object> TextToColumns(IRange destination, TextParsingType dataType = TextParsingType.Delimited, TextQualifier textQualifier = TextQualifier.None, bool consecutiveDelimiter = false, bool tab = false, bool semicolon = false, bool comma = false, bool space = false, bool other = false, char otherChar = '\0', Tuple<int, ColumnDataType>[] fieldInfo = null, char decimalSeparator = '\0', char thousandsSeparator = '\0', bool trailingMinusNumbers = false)
Function TextToColumns(destination As IRange, Optional dataType As TextParsingType = TextParsingType.Delimited, Optional textQualifier As TextQualifier = TextQualifier.None, Optional consecutiveDelimiter As Boolean = False, Optional tab As Boolean = False, Optional semicolon As Boolean = False, Optional comma As Boolean = False, Optional space As Boolean = False, Optional other As Boolean = False, Optional otherChar As Char = vbNullChar, Optional fieldInfo As Tuple(Of Integer, ColumnDataType)() = Nothing, Optional decimalSeparator As Char = vbNullChar, Optional thousandsSeparator As Char = vbNullChar, Optional trailingMinusNumbers As Boolean = False) As ActionResult(Of Object)
Type | Name | Description |
---|---|---|
IRange | destination | An IRange object that specifies where Spread will place the results. If the range is larger than a single cell, the top left cell is used. |
TextParsingType | dataType | The format of the text to be split into columns. |
TextQualifier | textQualifier | Specifies whether to use single, double, or no quotes as the text qualifier. |
bool | consecutiveDelimiter | True to have Spread consider consecutive delimiters as one delimiter. The default value is False. |
bool | tab |
|
bool | semicolon |
|
bool | comma |
|
bool | space |
|
bool | other |
|
char | otherChar | Required if |
Tuple<int, ColumnDataType>[] | fieldInfo | An array containing parse information for the individual columns of data. The interpretation depends on the value of |
char | decimalSeparator | The decimal separator that Spread uses when recognizing numbers. The default setting is the system setting. |
char | thousandsSeparator | The thousands separator that Spread uses when recognizing numbers. The default setting is the system setting. |
bool | trailingMinusNumbers | Numbers that begin with a minus character. |
Type | Description |
---|---|
ActionResult<object> |
|
Parses a column of cells that contain text into several columns.
ActionResult<object> TextToColumns(string destination, TextParsingType dataType = TextParsingType.Delimited, TextQualifier textQualifier = TextQualifier.None, bool consecutiveDelimiter = false, bool tab = false, bool semicolon = false, bool comma = false, bool space = false, bool other = false, char otherChar = '\0', Tuple<int, ColumnDataType>[] fieldInfo = null, char decimalSeparator = '\0', char thousandsSeparator = '\0', bool trailingMinusNumbers = false)
Function TextToColumns(destination As String, Optional dataType As TextParsingType = TextParsingType.Delimited, Optional textQualifier As TextQualifier = TextQualifier.None, Optional consecutiveDelimiter As Boolean = False, Optional tab As Boolean = False, Optional semicolon As Boolean = False, Optional comma As Boolean = False, Optional space As Boolean = False, Optional other As Boolean = False, Optional otherChar As Char = vbNullChar, Optional fieldInfo As Tuple(Of Integer, ColumnDataType)() = Nothing, Optional decimalSeparator As Char = vbNullChar, Optional thousandsSeparator As Char = vbNullChar, Optional trailingMinusNumbers As Boolean = False) As ActionResult(Of Object)
Type | Name | Description |
---|---|---|
string | destination | A string value that specifies where Spread will place the results. If the range is larger than a single cell, the top left cell is used. |
TextParsingType | dataType | The format of the text to be split into columns. |
TextQualifier | textQualifier | Specifies whether to use single, double, or no quotes as the text qualifier. |
bool | consecutiveDelimiter |
|
bool | tab |
|
bool | semicolon |
|
bool | comma |
|
bool | space |
|
bool | other |
|
char | otherChar | Required if |
Tuple<int, ColumnDataType>[] | fieldInfo | An array containing parse information for the individual columns of data. The interpretation depends on the value of |
char | decimalSeparator | The decimal separator that Spread uses when recognizing numbers. The default setting is the system setting. |
char | thousandsSeparator | The thousands separator that Spread uses when recognizing numbers. The default setting is the system setting. |
bool | trailingMinusNumbers | Numbers that begin with a minus character. |
Type | Description |
---|---|
ActionResult<object> |
|