[]
Saves the specified range in the sheet to the specified file in HTML.
public void SaveHtmlRange(int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, string filename)
Public Sub SaveHtmlRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowHeaders As Boolean, columnHeaders As Boolean, filename As String)
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
string | filename | Path and file name |
Saves the specified range in the sheet to the specified file in HTML.
public void SaveHtmlRange(int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, bool columnFooter, string filename)
Public Sub SaveHtmlRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowHeaders As Boolean, columnHeaders As Boolean, columnFooter As Boolean, filename As String)
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
bool | columnFooter | True to include column footer |
string | filename | Path and file name |
Saves the specified range in the sheet to the specified stream in HTML.
public void SaveHtmlRange(int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, Stream stream)
Public Sub SaveHtmlRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowHeaders As Boolean, columnHeaders As Boolean, stream As Stream)
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
Stream | stream | Stream to which to save the text of the range |
Saves the specified range in the sheet to the specified stream in HTML.
public void SaveHtmlRange(int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, bool columnFooter, Stream stream)
Public Sub SaveHtmlRange(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowHeaders As Boolean, columnHeaders As Boolean, columnFooter As Boolean, stream As Stream)
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
bool | columnFooter | True to include column footers |
Stream | stream | Stream to which to save the text of the range |