Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / SaveTextFileRange Method
The destination sheet index to save to.
Starting row index.
Starting column index.
The number of rows.
The number of columns.
Stream to which to save the text range.
The export flags.
Row delimiter string.
Column delimiter string.
Cell delimiter string.


In This Topic
    SaveTextFileRange Method (GcSpreadSheet)
    In This Topic
    Saves the range of cells in the specified sheet as delimited text with the specified delimiters, to a stream.
    Syntax
    'Declaration
     
    Public Sub SaveTextFileRange( _
       ByVal sheetIndex As Integer, _
       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 GcSpreadSheet
    Dim sheetIndex As Integer
    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(sheetIndex, row, column, rowCount, columnCount, stream, flags, rowDelimiter, columnDelimiter, cellDelimiter)
    public void SaveTextFileRange( 
       int sheetIndex,
       int row,
       int column,
       int rowCount,
       int columnCount,
       Stream stream,
       TextFileSaveFlags flags,
       string rowDelimiter,
       string columnDelimiter,
       string cellDelimiter
    )

    Parameters

    sheetIndex
    The destination sheet index to save to.
    row
    Starting row index.
    column
    Starting column index.
    rowCount
    The number of rows.
    columnCount
    The number of columns.
    stream
    Stream to which to save the text range.
    flags
    The export flags.
    rowDelimiter
    Row delimiter string.
    columnDelimiter
    Column delimiter string.
    cellDelimiter
    Cell delimiter string.
    See Also