Parameters
- row
- Row where the new rows are to be added
- count
- Number of rows to be added
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView
if (IsPostBack)
{
sv.AddRows(1, 2);
}
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView If IsPostBack Then sv.AddRows(1, 2) End If