Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Table Class / InsertRows Method
An integer value indicates the index to insert.
An integer value indicates the inserted row count.


In This Topic
    InsertRows Method (Table)
    In This Topic
    Inserts table row(s) at the specified index.
    Syntax
    'Declaration
     
    
    Public Function InsertRows( _
       ByVal index As Integer, _
       ByVal count As Integer _
    ) As ActionResult(Of Table)
    'Usage
     
    
    Dim instance As Table
    Dim index As Integer
    Dim count As Integer
    Dim value As ActionResult(Of Table)
     
    value = instance.InsertRows(index, count)
    public ActionResult<Table> InsertRows( 
       int index,
       int count
    )

    Parameters

    index
    An integer value indicates the index to insert.
    count
    An integer value indicates the inserted row count.

    Return Value

    true if the inserting is done successful, false otherwise.
    See Also