[]
Saves the range of cells (and may include headers) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers and footer) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers and footer) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers and footer) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers and footer) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers and footer) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers and footer) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding, bool saveFormulas)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding, saveFormulas As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
bool | saveFormulas | Whether to save formulas |
Type | Description |
---|---|
bool |
Saves the range of cells (and may include headers and footer) to a text file as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, string fileName, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding, bool saveFormulas)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, fileName As String, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding, saveFormulas As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
string | fileName | Path and name of the file to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
bool | saveFormulas | Whether to save formulas |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers and footer) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers and footer) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding, bool saveFormulas)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding, saveFormulas As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
bool | saveFormulas | Whether to save formulas |
Type | Description |
---|---|
bool |
Saves the range in the sheet (and may include headers and footer) as delimited text to a stream as specified.
public bool SaveTextFileRange(int row, int column, int rowCount, int columnCount, Stream stream, bool unformatted, IncludeHeaders includeHeaders, bool includeFooter, string rowDelimiter, string columnDelimiter, string cellDelimiter, bool forceCellDelimiter, Encoding encoding, bool saveFormulas)
Public Function SaveTextFileRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, stream As Stream, unformatted As Boolean, includeHeaders As IncludeHeaders, includeFooter As Boolean, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String, forceCellDelimiter As Boolean, encoding As Encoding, saveFormulas As Boolean) As Boolean
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
Stream | stream | Stream to which to save the range of cells |
bool | unformatted | Whether to save the data unformatted |
IncludeHeaders | includeHeaders | Which header cells from which to save data |
bool | includeFooter | Whether to save the data in the footer cells |
string | rowDelimiter | Row delimiter string |
string | columnDelimiter | Column delimiter string |
string | cellDelimiter | Cell delimiter string |
bool | forceCellDelimiter | True to force every cell value to use cell delimiter, false to use as needed |
Encoding | encoding | Encoding |
bool | saveFormulas | Whether to save formulas |
Type | Description |
---|---|
bool |