Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / RemoveRows Method
First row to be removed
Number of rows to be removed
Example


In This Topic
    RemoveRows Method (SheetView)
    In This Topic
    Removes the rows at the specified index.
    Syntax
    'Declaration
     
    
    Public Sub RemoveRows( _
       ByVal row As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim count As Integer
     
    instance.RemoveRows(row, count)
    public void RemoveRows( 
       int row,
       int count
    )

    Parameters

    row
    First row to be removed
    count
    Number of rows to be removed
    Example
    This example removes two rows.
    See Also