PowerTools SPREAD for Windows Forms 8.0J
Contains(Int32,Int32) メソッド


セルの行インデックス
セルの列インデックス
セル範囲に指定した行と列のセルが含まれているかどうかを判定します。
構文
'Declaration
 
Public Overloads Function Contains( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Boolean
'使用法
 
Dim instance As CellRange
Dim row As Integer
Dim column As Integer
Dim value As Boolean
 
value = instance.Contains(row, column)
public bool Contains( 
   int row,
   int column
)

パラメータ

row
セルの行インデックス
column
セルの列インデックス

戻り値の型

Boolean:セル範囲に指定したセルが含まれる場合は True、それ以外の場合は False
次のサンプルコードは、セル範囲の背景色を設定します。
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3); 
bool b; 
b = cr.Contains(2, 2); 
if (b == true) 
{ 
fpSpread1.ActiveSheet.Cells(cr.Row, cr.Column, cr.RowCount - 1, cr.ColumnCount - 1).BackColor = Color.Yellow; 
}
Dim cr As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3) 
Dim b As Boolean 
b = cr.Contains(2, 2) 
If b = True Then 
FpSpread1.ActiveSheet.Cells(cr.Row, cr.Column, cr.RowCount - 1, cr.ColumnCount - 1).BackColor = Color.Yellow 
End If
参照

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

 

 


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