PowerTools SPREAD for ASP.NET 8.0J
Cells プロパティ (FpSpread)

Spreadコンポーネントのアクティブシートのクライアント領域にあるセルを取得します。
構文
'Declaration
 
Public ReadOnly Property Cells As Cells
public Cells Cells {get;}

プロパティ値

現在選択されているシートのデータ領域のセルを含むCellsオブジェクト
解説

このプロパティは実行時のみ使用できます。

Cells、Columns、Rows、Sheetsの各プロパティを使用し、インデックスを指定してオブジェクトの各プロパティを設定することにより個々のセル、列、シートを処理します。

この例では、3シートから成るスプレッドシートを作成し、2番目のシートをアクティブシートに設定します。AlternatingRowsのBackColorを変更し、先頭列のセルをコマンドボタン型セルに設定します。
FpSpread1.Sheets.Count = 3;
FpSpread1.ActiveSheetViewIndex = 1;
FpSpread1.ActiveSheetView.AlternatingRows[0].BackColor = Color.Yellow;
FpSpread1.ActiveSheetView.AlternatingRows[1].BackColor = Color.YellowGreen;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = new FarPoint.Web.Spread.ButtonCellType();
FpSpread1.ActiveSheetView.Cells[1, 0].CellType = new FarPoint.Web.Spread.ButtonCellType();
FpSpread1.ActiveSheetView.Cells[2, 0].CellType = new FarPoint.Web.Spread.ButtonCellType();
FpSpread1.Sheets.Count = 3
FpSpread1.ActiveSheetViewIndex = 1
FpSpread1.ActiveSheetView.AlternatingRows(0).BackColor = Color.Yellow
FpSpread1.ActiveSheetView.AlternatingRows(1).BackColor = Color.YellowGreen
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = New FarPoint.Web.Spread.ButtonCellType()
FpSpread1.ActiveSheetView.Cells(1, 0).CellType = New FarPoint.Web.Spread.ButtonCellType()
FpSpread1.ActiveSheetView.Cells(2, 0).CellType = New FarPoint.Web.Spread.ButtonCellType()
参照

FpSpread クラス
FpSpread メンバ
Cells クラス

開発者の手引き

セル

 

 


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