PowerTools SPREAD for Windows Forms 8.0J
GetCellFromPixel(Int32,Int32,Int32,Int32) メソッド


ビューポートの行インデックス
ビューポートの列インデックス
ポインタ位置のX座標(ピクセル単位)
ポインタ位置のY座標(ピクセル単位)
ビューの指定されたポインタ位置のセルの行インデックスと列インデックスを取得します。
構文
'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
)

パラメータ

rowViewportIndex
ビューポートの行インデックス
columnViewportIndex
ビューポートの列インデックス
x
ポインタ位置のX座標(ピクセル単位)
y
ポインタ位置のY座標(ピクセル単位)

戻り値の型

指定されたポインタ位置にあるセルの行および列インデックスを含むCellRangeオブジェクト。指定された位置にセルがない場合は(-1, -1, -1, -1)。
解説

このメソッドは、行座標と列座標および行数と列数で構成される 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
参照

SpreadView クラス
SpreadView メンバ
オーバーロード一覧

開発者ガイド

編集、選択、フォーカス

 

 


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