CloudmersiveConvertClient.ConvertDocumentXlsxToTxtAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Convert Excel XLSX Spreadsheet to Text (txt)
public virtual System.Threading.Tasks.Task<Azure.Connectors.Sdk.CloudmersiveConvert.Models.TextConversionResult> ConvertDocumentXlsxToTxtAsync(System.Threading.CancellationToken cancellationToken = default);
abstract member ConvertDocumentXlsxToTxtAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Connectors.Sdk.CloudmersiveConvert.Models.TextConversionResult>
override this.ConvertDocumentXlsxToTxtAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Connectors.Sdk.CloudmersiveConvert.Models.TextConversionResult>
Public Overridable Function ConvertDocumentXlsxToTxtAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of TextConversionResult)
Parameters
- cancellationToken
- CancellationToken
Cancellation token.
Returns
The Convert Excel XLSX Spreadsheet to Text (txt) response.
Remarks
Convert Office Excel Workbooks (XLSX) to standard Text. Converts all worksheets in the workbook to Text. Supports both XLSX and XLSB file formats. When a spreadsheet contains multiple worksheets, will export all of the text from all of the worksheets. If you wish to export the text from only one worksheet, try using the Split XLSX API to split the spreadsheet into multiple worksheet files, and then run XLSX to Text on the individual worksheet file that you need to extract the text from.