'Declaration Public Overloads Sub SaveTextFileRange( _ 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, _ ByVal encoding As System.Text.Encoding _ )
'Usage Dim instance As Worksheet 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 Dim encoding As System.Text.Encoding instance.SaveTextFileRange(row, column, rowCount, columnCount, stream, flags, rowDelimiter, columnDelimiter, cellDelimiter, encoding)
public void SaveTextFileRange( 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, System.Text.Encoding encoding )
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 range text.
- flags
- The export flags.
- rowDelimiter
- The row delimiter string.
- columnDelimiter
- The column delimiter string.
- cellDelimiter
- The cell delimiter string.
- encoding
- The encoding.
Return Value
true
if the data is saved to the stream successfully; otherwise, false
.