PowerTools SPREAD for ASP.NET 8.0J
CheckBoxCellType コンストラクタ()

新しいチェック ボックス型セルを作成します。
構文
'Declaration
 
Public Function New()
public CheckBoxCellType()
この例では、アクティブシート上に10列20行から成るスプレッドシートを作成します。StyleInfoオブジェクトとそのオブジェクトのCheckBoxセル型を作成します。先頭列にチェックボックスを設定します。
FarPoint.Web.Spread.StyleInfo style = new FarPoint.Web.Spread.StyleInfo();
FpSpread1.ActiveSheetView.ColumnCount = 10;
FpSpread1.ActiveSheetView.PageSize = 20;
FpSpread1.ActiveSheetView.RowCount = 20;
style.CellType = new FarPoint.Web.Spread.CheckBoxCellType();
FpSpread1.ActiveSheetView.SetStyleInfo(-1, 0, style);
Dim style As New FarPoint.Web.Spread.StyleInfo()
FpSpread1.ActiveSheetView.ColumnCount = 10
FpSpread1.ActiveSheetView.PageSize = 20
FpSpread1.ActiveSheetView.RowCount = 20
style.CellType = New FarPoint.Web.Spread.CheckBoxCellType()
FpSpread1.ActiveSheetView.SetStyleInfo(-1, 0, sstyle)
参照

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

 

 


© 2003-2015, GrapeCity inc. All rights reserved.