Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / SaveTextFileRange Method / SaveTextFileRange(Int32,Int32,Int32,Int32,Stream,TextFileSaveFlags,String,String,String) Method
The starting row index.
The starting column index.
The number of rows.
The number of columns.
The stream to which to save the text of the range.
The export flags.
The row delimiter string.
The column delimiter string.
The cell delimiter string.


In This Topic
    SaveTextFileRange(Int32,Int32,Int32,Int32,Stream,TextFileSaveFlags,String,String,String) Method
    In This Topic
    Saves the range of cells in the sheet as delimited text and saves to a stream with the specified delimiters.
    Syntax
    'Declaration
     
    Public Overloads Sub SaveTextFileRange( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer, _
       ByVal stream As Stream, _
       ByVal flags As TextFileSaveFlags, _
       ByVal rowDelimiter As String, _
       ByVal columnDelimiter As String, _
       ByVal cellDelimiter As String _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim stream As Stream
    Dim flags As TextFileSaveFlags
    Dim rowDelimiter As String
    Dim columnDelimiter As String
    Dim cellDelimiter As String
     
    instance.SaveTextFileRange(row, column, rowCount, columnCount, stream, flags, rowDelimiter, columnDelimiter, cellDelimiter)
    public void SaveTextFileRange( 
       int row,
       int column,
       int rowCount,
       int columnCount,
       Stream stream,
       TextFileSaveFlags flags,
       string rowDelimiter,
       string columnDelimiter,
       string cellDelimiter
    )

    Parameters

    row
    The starting row index.
    column
    The starting column index.
    rowCount
    The number of rows.
    columnCount
    The number of columns.
    stream
    The stream to which to save the text of the range.
    flags
    The export flags.
    rowDelimiter
    The row delimiter string.
    columnDelimiter
    The column delimiter string.
    cellDelimiter
    The cell delimiter string.
    See Also