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


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
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

IRangeSupport Interface
IRangeSupport Members

 

 


Copyright © GrapeCity, inc. All rights reserved.