MESCIUS SPREAD for ASP.NET 10.0J
ColumnSpan プロパティ (Cell)

このセルに連結された列数を取得または設定します。
構文
'Declaration
 
Public Property ColumnSpan As Integer
public int ColumnSpan {get; set;}

プロパティ値

セル結合内の列数を表すInteger
解説

このセルがセル範囲を表す場合、この範囲の左上隅セルの連結範囲が返されるか設定されます。

この例では、7列50行のスプレッドシートを設定し、Cellオブジェクトを作成し、このオブジェクトを4列4行の連結セルにします。
FpSpread1.Sheets[0].ColumnCount = 7;
FpSpread1.Sheets[0].RowCount = 50;
FarPoint.Web.Spread.Cell mycell = null;
mycell=FpSpread1.Cells[0, 0];
mycell.ColumnSpan = 4;
mycell.RowSpan = 4;
FpSpread1.Sheets(0).ColumnCount = 7
FpSpread1.Sheets(0).RowCount = 50
Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.Cells(0, 0)
mycell.ColumnSpan = 4
mycell.RowSpan = 4
参照

Cell クラス
Cell メンバ
Column プロパティ
RowSpan プロパティ

 

 


© MESCIUS inc. All rights reserved.