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


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

パラメータ

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

戻り値の型

セルを含むCellRangeオブジェクト
解説

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

FpSpread クラス
FpSpread メンバ

開発者ガイド

編集、選択、フォーカス

 

 


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