Spread Windows Forms 12.0 Product Documentation
SaveHtmlRange(Int32,Int32,Int32,Int32,Boolean,Boolean,String) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > SaveHtmlRange Method : SaveHtmlRange(Int32,Int32,Int32,Int32,Boolean,Boolean,String) Method
Starting row index
Starting column index
Number of rows
Number of columns
True to include row headers
True to include column headers
Path and file name
Saves the specified range in the sheet to the specified file in HTML.
Syntax
'Declaration
 
Public Overloads Sub SaveHtmlRange( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer, _
   ByVal rowHeaders As Boolean, _
   ByVal columnHeaders As Boolean, _
   ByVal filename 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 filename As String
 
instance.SaveHtmlRange(row, column, rowCount, columnCount, rowHeaders, columnHeaders, filename)
public void SaveHtmlRange( 
   int row,
   int column,
   int rowCount,
   int columnCount,
   bool rowHeaders,
   bool columnHeaders,
   string 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
filename
Path and file name
Example
This example saves the specified range of the spreadsheet in HTML to a file.
fpSpread1.ActiveSheet.SaveHtmlRange(0, 0, 3, 3, true, true, "D:\\samples\\spreadrange.html");
FpSpread1.ActiveSheet.SaveHtmlRange(0, 0, 3, 3, True, True, "D:\samples\spreadrange.html")
See Also

Reference

SheetView Class
SheetView Members
Overload List