MESCIUS SPREAD for ASP.NET 10.0J
FpSpread コンストラクタ()

シートを1つだけ含む新しいスプレッドシートコンポーネントを作成します。
構文
'Declaration
 
Public Function New()
public FpSpread()
解説
このコンストラクターは、シートを1つだけ含むSpreadコンポーネントを作成します。2つ以上のシートを設定するには、FpSpread(Int)コンストラクターを使用します。
次のサンプルコードは、スプレッドシートコンポーネントのインスタンスを動的に作成します。
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.Add("Position", "Absolute");
fpspread1.Style.Add("Top", "120px");
fpspread1.Style.Add("Left", "100px");
fpspread1.Style.Add("Height", "150px");
fpspread1.Style.Add("Width", "380px");
Form1.Controls.Add(fpspread1);
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)
参照

FpSpread クラス
FpSpread メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.