PowerTools SPREAD for Windows Forms 8.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 _
)
'使用法
 
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
Dim instance As New CellRange(row, column, rowCount, columnCount)
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 メンバ
オーバーロード一覧

 

 


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