PowerTools SPREAD for Windows Forms 8.0J
GetRowViewportIndexFromY メソッド (SpreadView)


y座標
アクティブシートの指定した座標に対応するビューポート行のインデックスを取得します。
構文
'Declaration
 
Public Function GetRowViewportIndexFromY( _
   ByVal y As Integer _
) As Integer
'使用法
 
Dim instance As SpreadView
Dim y As Integer
Dim value As Integer
 
value = instance.GetRowViewportIndexFromY(y)
public int GetRowViewportIndexFromY( 
   int y
)

パラメータ

y
y座標

戻り値の型

ビューポート行のインデックスを表す Integer
解説

このメソッド(およびGetColumnViewportIndexFromXメソッド)を使用すると、ピクセルオフセットからビューポート行またはビューポート列のインデックスを取得できます。これはマウス処理時に、どのビューポートでマウスイベント(MouseDownやMouseMoveなど)が発生したかを特定するのに役立ちます。

ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。

次のサンプルコードは、GetRowViewportIndexFromYメソッドを使用します。
private void fpSpread1MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
     int i;
     i = fpSpread1.GetRootWorkbook.GetRowViewportIndexFromY(e.Y);
     Debug.WriteLine(i.ToString);
}
Private Sub FpSpread1MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles FpSpread1.MouseDown
     Dim i As Integer
     i = FpSpread1.GetRootWorkbook.GetColumnViewportIndexFromX(e.X)
     Debug.WriteLine(i.ToString)
End Sub
参照

SpreadView クラス
SpreadView メンバ

開発者ガイド

ビューポート

 

 


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