PowerTools SPREAD for ASP.NET 8.0J
Contains(Int32,Int32,Int32,Int32) メソッド

範囲の先頭セルの行インデックス
範囲の先頭セルの列インデックス
範囲の行数
範囲の列数
セル範囲に指定した別のセル範囲が含まれているかどうかを判定します。
構文
'Declaration
 
Public Overloads Function Contains( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) As Boolean
public bool Contains( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
範囲の先頭セルの行インデックス
column
範囲の先頭セルの列インデックス
rowCount
範囲の行数
columnCount
範囲の列数

戻り値の型

範囲に別の範囲が含まれている場合はtrue、それ以外の場合はfalse
この例では、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(0, 0, 2, 2);
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(0, 0, 2, 2)
ListBox1.Items.Add(b)
参照

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

 

 


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