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

シートのデータ領域内のセルを取得します。
構文
'Declaration
 
Public ReadOnly Property Cells As Cells
public Cells Cells {get;}

プロパティ値

セを含むCellsオブジェクト
解説

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

このプロパティは、シート内のセルおよびセル範囲に対する参照を可能にします。

この例では、SheetViewオブジェクトをアクティブシートに割り当て、Borderオブジェクトを作成します。罫線をシートのすべてのセルに適用し、セル間隔を5に増やします。
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
FarPoint.Web.Spread.Border bord = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Teal, 2);
int i, j;
for (i = 0; i <= 2; i++)
{
     for (j = 0; j <= 3; j++)
          sv.Cells[i, j].Border = bord;
}
sv.CellSpacing = 5;
Dim sv As FarPoint.Web.Spread.SheetView
Dim bord As New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Teal, 2)
Dim i, j As Integer
sv = FpSpread1.ActiveSheetView
For i = 0 To 2
      For j = 0 To 3
            sv.Cells(i, j).Border = bord
      Next j
Next i
sv.CellSpacing = 5
参照

SheetView クラス
SheetView メンバ
Cells クラス
Cell クラス

開発者の手引き

セル

 

 


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