Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SaveHtmlRange Method / SaveHtmlRange(Int32,Int32,Int32,Int32,Boolean,Boolean,Stream) Method
Starting row index
Starting column index
Number of rows
Number of columns
True to include row headers
True to include column headers
Stream to which to save the text of the range


In This Topic
    SaveHtmlRange(Int32,Int32,Int32,Int32,Boolean,Boolean,Stream) Method
    In This Topic
    Saves the specified range in the sheet to the specified stream 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 stream As Stream _
    ) 
    '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 stream As Stream
     
    instance.SaveHtmlRange(row, column, rowCount, columnCount, rowHeaders, columnHeaders, stream)

    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
    stream
    Stream to which to save the text of the range
    See Also