[]
Saves the specified range in the specified SheetView to the specified file as an HTML table.
public static void SaveHtmlRange(SheetView sheetView, int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, string filename)
Public Shared Sub SaveHtmlRange(sheetView As SheetView, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowHeaders As Boolean, columnHeaders As Boolean, filename As String)
Type | Name | Description |
---|---|---|
SheetView | sheetView | SheetView |
int | row | Starting row index of range to save |
int | column | Starting column index of range to save |
int | rowCount | Number of rows in range to save |
int | columnCount | Number of columns in range to save |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
string | filename | string |
Saves the specified range in the specified SheetView to the specified file as an HTML table.
public static void SaveHtmlRange(SheetView sheetView, int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, bool columnFooter, string filename)
Public Shared Sub SaveHtmlRange(sheetView As SheetView, 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 |
---|---|---|
SheetView | sheetView | SheetView |
int | row | Starting row index of range to save |
int | column | Starting column index of range to save |
int | rowCount | Number of rows in range to save |
int | columnCount | Number of columns in range to save |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
bool | columnFooter | True to include column footers |
string | filename | The string |
Saves the specified range in the specified SheetView to the specified stream as an HTML table.
public static void SaveHtmlRange(SheetView sheetView, int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, Stream stream)
Public Shared Sub SaveHtmlRange(sheetView As SheetView, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowHeaders As Boolean, columnHeaders As Boolean, stream As Stream)
Type | Name | Description |
---|---|---|
SheetView | sheetView | SheetView |
int | row | Starting row index of range to save |
int | column | Starting column index of range to save |
int | rowCount | Number of rows in range to save |
int | columnCount | Number of columns in range to save |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
Stream | stream | Stream |
Saves the specified range in the specified SheetView to the specified stream as an HTML table.
public static void SaveHtmlRange(SheetView sheetView, int row, int column, int rowCount, int columnCount, bool rowHeaders, bool columnHeaders, bool columnFooter, Stream stream)
Public Shared Sub SaveHtmlRange(sheetView As SheetView, 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 |
---|---|---|
SheetView | sheetView | SheetView |
int | row | Starting row index of range to save |
int | column | Starting column index of range to save |
int | rowCount | Number of rows in range to save |
int | columnCount | Number of columns in range to save |
bool | rowHeaders | True to include row headers |
bool | columnHeaders | True to include column headers |
bool | columnFooter | True to include column footers |
Stream | stream | Stream |