XmlMappedRange.TextToColumns Method
Parses a column of cells that contain text into several columns.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
Function TextToColumns ( _
Destination As Object, _
DataType As XlTextParsingType, _
TextQualifier As XlTextQualifier, _
ConsecutiveDelimiter As Object, _
Tab As Object, _
Semicolon As Object, _
Comma As Object, _
Space As Object, _
Other As Object, _
OtherChar As Object, _
FieldInfo As Object, _
DecimalSeparator As Object, _
ThousandsSeparator As Object, _
TrailingMinusNumbers As Object _
) As Object
Object TextToColumns(
Object Destination,
XlTextParsingType DataType,
XlTextQualifier TextQualifier,
Object ConsecutiveDelimiter,
Object Tab,
Object Semicolon,
Object Comma,
Object Space,
Object Other,
Object OtherChar,
Object FieldInfo,
Object DecimalSeparator,
Object ThousandsSeparator,
Object TrailingMinusNumbers
)
Parameters
Destination
Type: System.ObjectA Range that specifies where Microsoft Office Excel places the results. If the range is larger than a single cell, the top left cell is used.
DataType
Type: XlTextParsingTypeThe format of the text to be split into columns.
Can be one of the following XlTextParsingType constants:
xlDelimited (default)
TextQualifier
Type: XlTextQualifierCan be one of the following XlTextQualifier values:
xlTextQualifierDoubleQuote (default)
ConsecutiveDelimiter
Type: System.Objecttrue to have Excel consider consecutive delimiters as one delimiter. The default value is false.
Tab
Type: System.Objecttrue to have DataType be xlDelimited and to have the tab character be a delimiter. The default value is false.
Semicolon
Type: System.Objecttrue to have DataType be xlDelimited and to have the semicolon be a delimiter. The default value is false.
Comma
Type: System.Objecttrue to have DataType be xlDelimited and to have the comma be a delimiter. The default value is false.
Space
Type: System.Objecttrue to have DataType be xlDelimited and to have the space character be a delimiter. The default value is false.
Other
Type: System.Objecttrue to have DataType be xlDelimited and to have the character specified by the OtherChar argument be a delimiter. The default value is false.
OtherChar
Type: System.ObjectThe delimiter character when Other is true. If more than one character is specified, only the first character of the string is used; the remaining characters are ignored.
FieldInfo
Type: System.ObjectAn array containing parse information for the individual columns of data. The interpretation depends on the value of DataType. When the data is delimited, this argument is an array of two-element arrays, with each two-element array specifying the conversion options for a particular column. The first element is the column number (1-based), and the second element is one of the XlColumnDataType constants specifying how the column is parsed.
Can be one of the following XlColumnDataType values:
You can use xlEMDFormat only if Taiwanese language support is installed and selected. xlEMDFormat specifies that Taiwanese era dates are being used.
The column specifiers can be in any order. If a given column specifier is not present for a particular column in the input data, the column is parsed with the xlGeneralFormat setting.
If the source data has fixed-width columns, the first element of each two-element array specifies the starting character position in the column (as an integer; 0 (zero) is the first character). The second element of the two-element array specifies the parse option for the column as a number from 1 through 9, as listed above.
DecimalSeparator
Type: System.ObjectThe decimal separator that Excel uses when recognizing numbers. The default setting is the system setting.
ThousandsSeparator
Type: System.ObjectThe thousands separator that Excel uses when recognizing numbers. The default setting is the system setting.
TrailingMinusNumbers
Type: System.ObjectNumbers that begin with a minus character.
Return Value
Type: System.Object
Remarks
The following table shows the results of importing text into Excel for various import settings. Numeric results are displayed in the rightmost column.
System decimal separator |
System thousands separator |
Decimal separator value |
Thousands separator value |
Original text |
Cell value (data type) |
---|---|---|---|---|---|
Period |
Comma |
Comma |
Period |
123.123,45 |
123,123.45 (numeric) |
Period |
Comma |
Comma |
Comma |
123.123,45 |
123.123,45 (text) |
Comma |
Period |
Comma |
Period |
123,123.45 |
123,123.45 (numeric) |
Period |
Comma |
Period |
Comma |
123 123.45 |
123 123.45 (text) |
Period |
Comma |
Period |
Space |
123 123.45 |
123,123.45 (numeric) |
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.
Examples
The following code example uses the TextToColumns method to convert a space-delimited date string within an XmlMappedRange to three columns. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
Private Sub ConvertTextToColumns()
Me.CustomerDateCell.Value2 = "01 01 2001"
Dim destinationRange As Excel.Range = Me.Range("A5")
Me.CustomerDateCell.TextToColumns(destinationRange, _
Excel.XlTextParsingType.xlDelimited, _
Excel.XlTextQualifier.xlTextQualifierDoubleQuote, Space:=True)
End Sub
private void ConvertTextToColumns()
{
this.CustomerDateCell.Value2 = "01 01 2001";
Excel.Range destinationRange = this.Range["A5"];
this.CustomerDateCell.TextToColumns(destinationRange,
Excel.XlTextParsingType.xlDelimited,
Excel.XlTextQualifier.xlTextQualifierDoubleQuote);
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.