'Declaration Public Sub SaveTextFileRange( _ ByVal sheetIndex As System.Integer, _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal rowCount As System.Integer, _ ByVal columnCount As System.Integer, _ ByVal stream As System.IO.Stream, _ ByVal flags As TextFileSaveFlags, _ ByVal rowDelimiter As System.String, _ ByVal columnDelimiter As System.String, _ ByVal cellDelimiter As System.String _ )
'Usage Dim instance As GcSpreadSheet Dim sheetIndex As System.Integer Dim row As System.Integer Dim column As System.Integer Dim rowCount As System.Integer Dim columnCount As System.Integer Dim stream As System.IO.Stream Dim flags As TextFileSaveFlags Dim rowDelimiter As System.String Dim columnDelimiter As System.String Dim cellDelimiter As System.String instance.SaveTextFileRange(sheetIndex, row, column, rowCount, columnCount, stream, flags, rowDelimiter, columnDelimiter, cellDelimiter)
public void SaveTextFileRange( System.int sheetIndex, System.int row, System.int column, System.int rowCount, System.int columnCount, System.IO.Stream stream, TextFileSaveFlags flags, System.string rowDelimiter, System.string columnDelimiter, System.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.