MESCIUS SPREAD for Windows Forms 15.0J
Intersects メソッド (CellRange)
使用例 

セル範囲が指定した範囲と交差するかどうかを判定します。
オーバーロード一覧
オーバーロード解説
Intersects(Int32,Int32,Int32,Int32)セル範囲が指定した範囲と交差するかどうかを判定します。  
Intersects(CellRange)セル範囲が指定した範囲と交差するかどうかを判定します。  
使用例
次のサンプルコードでは、このメンバを使用して、選択されている範囲が指定した範囲と交差するかどうかを返しています。
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3);
bool b;
b = cr.Intersects(1, 1, 2, 2);
listBox1.Items.Add(b.ToString());
Dim cr As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3)
Dim b As Boolean
b = cr.Intersects(1, 1, 2, 2)
ListBox1.Items.Add(b.ToString())
参照

CellRange クラス
CellRange メンバ

 

 


© MESCIUS inc. All rights reserved.