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