Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / AddUnboundRows Method
Row index at which to start adding rows
Number of rows to add
Example


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

    Parameters

    row
    Row index at which to start adding rows
    count
    Number of rows to add
    Remarks

    This creates a row of blank cells that is not bound to the data set and does not affect the data set. An unbound row does not inherently appear or behave differently from bound rows.

    The unbound row is added to the models using the IUnboundRowSupport interface.

    If you subsequently need to add an unbound row to the bound data set, use AddRowToDataSource method.

    For more information, refer to Adding an Unbound Row.

    Example
    This example adds a row to the data source.
    See Also