Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / AddRows Method / AddRows(Int32,Int32,SheetArea) Method
The row index at which to add rows.
The number of rows to add.
The sheet area in which to add rows.


In This Topic
    AddRows(Int32,Int32,SheetArea) Method
    In This Topic
    Adds rows in a specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Sub AddRows( _
       ByVal row As Integer, _
       ByVal count As Integer, _
       ByVal sheetArea As SheetArea _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim count As Integer
    Dim sheetArea As SheetArea
     
    instance.AddRows(row, count, sheetArea)
    public void AddRows( 
       int row,
       int count,
       SheetArea sheetArea
    )

    Parameters

    row
    The row index at which to add rows.
    count
    The number of rows to add.
    sheetArea
    The sheet area in which to add rows.
    See Also