Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ISpreadsheet Interface / InsertRows Method
An integer value indicates the row index at which to insert new row(s).
An integer value indicates the number of row(s) to insert.


In This Topic
    InsertRows Method (ISpreadsheet)
    In This Topic
    Inserts row(s) at the specified position.
    Syntax
    'Declaration
     
    
    Function InsertRows( _
       ByVal row As Integer, _
       ByVal count As Integer _
    ) As ActionResult(Of Object)
    'Usage
     
    
    Dim instance As ISpreadsheet
    Dim row As Integer
    Dim count As Integer
    Dim value As ActionResult(Of Object)
     
    value = instance.InsertRows(row, count)

    Parameters

    row
    An integer value indicates the row index at which to insert new row(s).
    count
    An integer value indicates the number of row(s) to insert.

    Return Value

    true if the rows are inserted successful, false otherwise.
    See Also