Spread for ASP.NET 11 Product Documentation
AddRows Method (IRangeSupport)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > IRangeSupport Interface : AddRows Method
Row index of row after which to add rows
Number of rows to add
Adds rows of cells after the specified row.
Syntax
'Declaration
 
Sub AddRows( _
   ByVal row As Integer, _
   ByVal rowCount As Integer _
) 
'Usage
 
Dim instance As IRangeSupport
Dim row As Integer
Dim rowCount As Integer
 
instance.AddRows(row, rowCount)
void AddRows( 
   int row,
   int rowCount
)

Parameters

row
Row index of row after which to add rows
rowCount
Number of rows to add
Example
private void Button1Click(object sender, System.EventArgs e)
{
    FarPoint.Web.Spread.Model.IRangeSupport irs;
    irs = (FarPoint.Web.Spread.Model.IRangeSupport)FpSpread1.ActiveSheetView.DataModel;
    irs.AddColumns(1, 3);
    irs.AddRows(1, 3);
}
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim irs As FarPoint.Web.Spread.Model.IRangeSupport
    irs = FpSpread1.ActiveSheetView.DataModel
    irs.AddColumns(1, 3)
    irs.AddRows(1, 3)
End Sub
See Also

Reference

IRangeSupport Interface
IRangeSupport Members