FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス : GetCellFromPixel メソッド |
'Declaration Public Function GetCellFromPixel( _ ByVal rowViewportIndex As Integer, _ ByVal columnViewportIndex As Integer, _ ByVal x As Integer, _ ByVal y As Integer _ ) As CellRange
'使用法 Dim instance As FpSpread Dim rowViewportIndex As Integer Dim columnViewportIndex As Integer Dim x As Integer Dim y As Integer Dim value As CellRange value = instance.GetCellFromPixel(rowViewportIndex, columnViewportIndex, x, y)
public CellRange GetCellFromPixel( int rowViewportIndex, int columnViewportIndex, int x, int y )
このメソッドは、行座標と列座標および行数と列数で構成される CellRange オブジェクトを返します。ピクセル位置にセルが存在する場合は、CellRange(row, column, 1, 1) が返されます(row と column はそれぞれ、セルの行インデックスと列インデックスを表します)。ピクセル位置にセルが存在しない場合は、CellRange(-1, -1, -1, -1) が返されます。
x パラメータと y パラメータにはポインタ(カーソル)の表示位置(ピクセル)を指定し、rowviewportindex パラメータと columnviewportindex パラメータには特定のビューポートを指定します。
このメソッドが返すのはシートのデータ領域のピクセル位置に対応するセル情報のみで、ヘッダやシートの隅、または SPREADのその他の部分については、セル情報は返されません。列ヘッダおよび行ヘッダ内のセルについては、GetColumnHeaderCellFromPixel メソッドおよび GetRowHeaderCellFromPixel メソッドを使用してください。
private void fpSpread1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) { FarPoint.Win.Spread.Model.CellRange range = fpSpread2.GetCellFromPixel(0, 0, e.X, e.Y); listBox1.Items.Add("range: row=" + range.Row.ToString() + " column=" + range.Column.ToString()); }
Private Sub FpSpread1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles FpSpread1.MouseDown Dim range As FarPoint.Win.Spread.Model.CellRange = FpSpread2.GetCellFromPixel(0, 0, e.X, e.Y) ListBox1.Items.Add("range: row=" & range.Row.ToString() & " column=" & range.Column.ToString()) End Sub