PowerTools SPREAD for Windows Forms 8.0J
Find メソッド (ISheetSpanModel)


セルの行インデックス。
セルの列インデックス。
指定したセルを含むセル結合をコレクション内で検索します。
構文
'Declaration
 
Function Find( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
'使用法
 
Dim instance As ISheetSpanModel
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.Find(row, column)
CellRange Find( 
   int row,
   int column
)

パラメータ

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

戻り値の型

連結セルの範囲を含むCellRangeオブジェクト
次のサンプルコードは、コレクション内の指定したセルを含む連結セルを検索します。
FarPoint.Win.Spread.Model.ISheetSpanModel sp;
FarPoint.Win.Spread.Model.CellRange cr;
DialogResult dlg;
sp = (FarPoint.Win.Spread.Model.ISheetSpanModel)fpSpread1.ActiveSheet.Models.Span;
sp.Add(0, 0, 2, 2);
sp.Add(0, 3, 2, 2);
dlg = MessageBox.Show("Do you want to find the specified span??", "Find", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
     cr = sp.Find(1, 3);
     label1.Text = "The column index of the cell is " + cr.Column + " and the row index is " + cr.Row;
}
Dim sp As FarPoint.Win.Spread.Model.ISheetSpanModel
Dim cr As FarPoint.Win.Spread.Model.CellRange
Dim dlg As DialogResult
sp = FpSpread1.ActiveSheet.Models.Span
sp.Add(0, 0, 2, 2)
sp.Add(0, 3, 2, 2)
dlg = MessageBox.Show("Do you want to find the specified span??", "Find", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
     cr = sp.Find(1, 3)
     Label1.Text = "The column index of the cell is " & cr.Column  & " and the row index is " & cr.Row
End If
参照

ISheetSpanModel インタフェース
ISheetSpanModel メンバ

 

 


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