Saves the specified range in the specified SheetView to the specified stream as an HTML table.
Syntax
'Declaration
Public Overloads Shared Sub SaveHtmlRange( _
ByVal As SheetView, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal columnCount As Integer, _
ByVal As Boolean, _
ByVal columnHeaders As Boolean, _
ByVal columnFooter As Boolean, _
ByVal As Stream _
)
'Usage
Dim sheetView As SheetView
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim rowHeaders As Boolean
Dim columnHeaders As Boolean
Dim columnFooter As Boolean
Dim stream As Stream
SpreadSerializer.SaveHtmlRange(sheetView, row, column, rowCount, columnCount, rowHeaders, columnHeaders, columnFooter, stream)
Parameters
- sheetView
- SheetView
- row
- Starting row index of range to save
- column
- Starting column index of range to save
- rowCount
- Number of rows in range to save
- columnCount
- Number of columns in range to save
- rowHeaders
- True to include row headers
- columnHeaders
- True to include column headers
- columnFooter
- True to include column footers
- stream
- Stream
See Also