FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス > GetCellFromPixel メソッド : GetCellFromPixel(Int32,Int32,Int32,Int32) メソッド |
'Declaration Public Overloads Function GetCellFromPixel( _ ByVal rowViewportIndex As Integer, _ ByVal columnViewportIndex As Integer, _ ByVal x As Integer, _ ByVal y As Integer _ ) As CellRange
'使用法 Dim instance As SpreadView 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 fpSpread1MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) { FarPoint.Win.Spread.SpreadView sv = new FarPoint.Win.Spread.SpreadView(fpSpread1); sv = fpSpread1.GetRootWorkbook(); FarPoint.Win.Spread.Model.CellRange cr; cr = sv.GetCellFromPixel(0, 1, e.X, e.Y); textBox1.Text = "You are in cell " + cr.Row.ToString() + " - " + cr.Column.ToString(); }
Private Sub FpSpread1MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles FpSpread1.MouseDown Dim sv As New FarPoint.Win.Spread.SpreadView(FpSpread1) sv = FpSpread1.GetRootWorkbook() Dim cr As FarPoint.Win.Spread.Model.CellRange cr = sv.GetCellFromPixel(0, 1, e.X, e.Y) TextBox1.Text = "You are in cell " & cr.Row.ToString() & " - " & cr.Column.ToString() End Sub