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

範囲の先頭セルの行インデックス
範囲の先頭セルの列インデックス
範囲の行数
範囲の列数
セル範囲を作成します。
構文
'Declaration
 
Public Function New( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
)
public CellRange( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
範囲の先頭セルの行インデックス
column
範囲の先頭セルの列インデックス
rowCount
範囲の行数
columnCount
範囲の列数
この例では、CellRangeを使用してシート内に連結セルを作成します。範囲のいくつかのメソッドが返す値をリストボックスに入力します。
FarPoint.Web.Spread.Model.CellRange range = new FarPoint.Web.Spread.Model.CellRange(0, 0, 4, 4);
bool b;
FpSpread1.ActiveSheetView.ColumnCount = 10;
FpSpread1.ActiveSheetView.RowCount = 10;
FpSpread1.ActiveSheetView.AddSpanCell(range.Row, range.Column, range.RowCount, range.ColumnCount);
b = range.Contains(1, 1);
ListBox1.Items.Add(Convert.ToString(b));
Dim range As New FarPoint.Web.Spread.Model.CellRange(0, 0, 4, 4)
Dim b As Boolean
FpSpread1.ActiveSheetView.ColumnCount = 10
FpSpread1.ActiveSheetView.RowCount = 10
FpSpread1.ActiveSheetView.AddSpanCell(range.Row, range.Column, range.RowCount, range.ColumnCount)
b = range.Contains(1, 1)
ListBox1.Items.Add(b)
参照

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

 

 


© MESCIUS inc. All rights reserved.