| Visual Basic (Declaration) | |
|---|---|
Public Function New()  | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
Dim instance As New FpSpread()  | |
| C# | |
|---|---|
public FpSpread()  | |
This constructor creates a Spread component with only one sheet. Use the other FpSpread(Int) constructor to set it up with more sheets.
            
            This example dynamically creates an instance of the spreadsheet component.
             
            
            | C# |  Copy Code | 
|---|---|
protected System.Web.UI.HtmlControls.HtmlForm Form1; protected FarPoint.Web.Spread.FpSpread fpspread1; protected FarPoint.Web.Spread.SheetView sheet; fpspread1 = new FarPoint.Web.Spread.FpSpread(); sheet = new FarPoint.Web.Spread.SheetView(); fpspread1.ID = "fpspread1"; fpspread1.Sheets.Add(sheet); fpspread1.Style("Position") = "Absolute"; fpspread1.Style("Top") = "120px"; fpspread1.Style("Left") = "100px"; fpspread1.Style("Height") = "150px"; fpspread1.Style("Width") = "380px"; Form1.Controls.Add(fpspread1);  | |
| Visual Basic |  Copy Code | 
|---|---|
Protected Form1 As System.Web.UI.HtmlControls.HtmlForm Protected WithEvents fpspread1 As FarPoint.Web.Spread.FpSpread Protected sheet As FarPoint.Web.Spread.SheetView fpspread1 = New FarPoint.Web.Spread.FpSpread sheet = New FarPoint.Web.Spread.SheetView fpspread1.ID = "fpspread1" fpspread1.Sheets.Add(sheet) fpspread1.Style("Position") = "Absolute" fpspread1.Style("Top") = "120px" fpspread1.Style("Left") = "100px" fpspread1.Style("Height") = "150px" fpspread1.Style("Width") = "380px" Form1.Controls.Add(fpspread1)  | |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family