Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / SaveCsv Method / SaveCsv(Int32,Int32,Int32,Int32,String,TextFileSaveFlags,Encoding) Method
The starting row index.
The starting column index.
The number of rows.
The number of columns.
The path and name of the file to which to save the content.
The export flags.
The encoding.


In This Topic
    SaveCsv(Int32,Int32,Int32,Int32,String,TextFileSaveFlags,Encoding) Method
    In This Topic
    Saves the CSV (comma-separated values) file.
    Syntax
    'Declaration
     
    Public Overloads Sub SaveCsv( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer, _
       ByVal fileName As String, _
       ByVal flags As TextFileSaveFlags, _
       ByVal encoding As Encoding _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim fileName As String
    Dim flags As TextFileSaveFlags
    Dim encoding As Encoding
     
    instance.SaveCsv(row, column, rowCount, columnCount, fileName, flags, encoding)
    public void SaveCsv( 
       int row,
       int column,
       int rowCount,
       int columnCount,
       string fileName,
       TextFileSaveFlags flags,
       Encoding encoding
    )

    Parameters

    row
    The starting row index.
    column
    The starting column index.
    rowCount
    The number of rows.
    columnCount
    The number of columns.
    fileName
    The path and name of the file to which to save the content.
    flags
    The export flags.
    encoding
    The encoding.
    See Also