SaveHtmlRange(Int32,Int32,Int32,Int32,Boolean,Boolean,Boolean,String) Method
In This Topic
Saves the specified range in the sheet to the specified file in HTML.
Syntax
'Declaration
Public Overloads Sub SaveHtmlRange( _
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 String _
)
'Usage
Dim instance 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 filename As String
instance.SaveHtmlRange(row, column, rowCount, columnCount, rowHeaders, columnHeaders, columnFooter, filename)
Parameters
- row
- Starting row index
- column
- Starting column index
- rowCount
- Number of rows
- columnCount
- Number of columns
- rowHeaders
- True to include row headers
- columnHeaders
- True to include column headers
- columnFooter
- True to include column footer
- filename
- Path and file name
See Also