Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Data Namespace / DataManager Class / AddUnboundRows Method / AddUnboundRows(Int32,Int32,Boolean) Method
Row index at which to add the new rows
Number of rows to add
true to notify the control; otherwise, queue the change.


In This Topic
    AddUnboundRows(Int32,Int32,Boolean) 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, _
       ByVal notifyUI As Boolean _
    ) As ActionResult(Of Object)
    'Usage
     
    
    Dim instance As DataManager
    Dim row As Integer
    Dim count As Integer
    Dim notifyUI As Boolean
    Dim value As ActionResult(Of Object)
     
    value = instance.AddUnboundRows(row, count, notifyUI)
    public ActionResult<object> AddUnboundRows( 
       int row,
       int count,
       bool notifyUI
    )

    Parameters

    row
    Row index at which to add the new rows
    count
    Number of rows to add
    notifyUI
    true to notify the control; otherwise, queue the change.
    See Also