Spread for ASP.NET 8.0 Product Documentation
Add Method (Row)
Example 


Adds a new row or range of rows before this row or range of rows.
Syntax
'Declaration
 
Public Sub Add() 
'Usage
 
Dim instance As Row
 
instance.Add()
public void Add()
Example
This example adds a row to the spreadsheet after every post back.
FarPoint.Web.Spread.Row r;
r = FpSpread1.ActiveSheetView.Rows[0];
if(IsPostBack)
{
     r.Add();
}
Dim r As FarPoint.Web.Spread.Row
r = FpSpread1.ActiveSheetView.Rows(0)
If IsPostBack Then
     r.Add()
End If
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Row Class
Row Members

 

 


Copyright © GrapeCity, inc. All rights reserved.