Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Data Namespace / DataManager Class / AddUnboundRows Method / AddUnboundRows(Int32,Int32) Method
Row index at which to add the new rows
Number of rows to add


In This Topic
    AddUnboundRows(Int32,Int32) Method
    In This Topic
    Adds unbound rows to the data model.
    Syntax
    'Declaration
     
    
    Public Overloads Function AddUnboundRows( _
       ByVal row As Integer, _
       ByVal count As Integer _
    ) As ActionResult(Of Object)
    'Usage
     
    
    Dim instance As DataManager
    Dim row As Integer
    Dim count As Integer
    Dim value As ActionResult(Of Object)
     
    value = instance.AddUnboundRows(row, count)
    public ActionResult<object> AddUnboundRows( 
       int row,
       int count
    )

    Parameters

    row
    Row index at which to add the new rows
    count
    Number of rows to add
    See Also