MESCIUS SPREAD for Windows Forms 15.0J
CellRange コンストラクタ(Int32,Int32,Int32,Int32)
使用例 

範囲の先頭のセルの行インデックス
範囲の先頭のセルの列インデックス
範囲の行数
範囲の列数
セル範囲を作成します。
構文
'宣言
 
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
範囲の列数
使用例
次のサンプルコードは、セル範囲を作成し、その範囲を使用して連結セルを設定します。
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3);
fpSpread1.ActiveSheet.Models.Span.Add(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount);
Dim cr As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3)
FpSpread1.ActiveSheet.Models.Span.Add(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount)
参照

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

 

 


© MESCIUS inc. All rights reserved.