VintaSoft Imaging .NET SDK 14.1: Documentation for .NET developer
Vintasoft.Imaging.Office.OpenXml Namespace / OpenXmlDocumentConverter Class / ConvertXlsxToCsv Methods / ConvertXlsxToCsv(Stream,Int32,Stream,Encoding) Method
Syntax Requirements SeeAlso
    ConvertXlsxToCsv(Stream,Int32,Stream,Encoding) Method (OpenXmlDocumentConverter)
    Converts an XLSX document to a CSV (Comma Separated Values) file.
    Syntax
    'Declaration
    
    Public Overloads Shared Sub ConvertXlsxToCsv( _
    ByVal inputStream
    The input stream that contains XLSX file.
    As System.IO.Stream, _
    ByVal worksheetIndex
    The index of worksheet that should be converted.
    As System.Int32, _
    ByVal outputStream
    The output stream.
    As System.IO.Stream, _
    ByVal outputStreamEncoding
    The text encoding of output stream.
    As System.Text.Encoding _
    )
     

    Parameters

    inputStream
    The input stream that contains XLSX file.
    worksheetIndex
    The index of worksheet that should be converted.
    outputStream
    The output stream.
    outputStreamEncoding
    The text encoding of output stream.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also