Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / AddRows Method
Row where the new rows are to be added
Number of rows to be added
Example


In This Topic
    AddRows Method (SheetView)
    In This Topic
    Adds rows to the data model.
    Syntax
    'Declaration
     
    
    Public Sub AddRows( _
       ByVal row As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim count As Integer
     
    instance.AddRows(row, count)
    public void AddRows( 
       int row,
       int count
    )

    Parameters

    row
    Row where the new rows are to be added
    count
    Number of rows to be added
    Example
    This example adds two rows to the sheet.
    See Also