MESCIUS SPREAD for Windows Forms 15.0J
HitTest(Int32,Int32) メソッド
使用例 

x値
y値
特定の位置に関する情報を返します。
構文
'宣言
 
Public Function HitTest( _
   ByVal x As Integer, _
   ByVal y As Integer _
) As HitTestInformation
public HitTestInformation HitTest( 
   int x,
   int y
)

パラメータ

x
x値
y
y値
使用例
次のサンプルコードは、クリックされたセルの概略位置を返します。
private void fpSpread1_CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e)
        {
            FarPoint.Win.Spread.SpreadView sv;
            sv = fpSpread1.GetRootWorkbook();
            FarPoint.Win.Spread.HitTestInformation hit;
            hit = sv.HitTest(e.X, e.Y);
            listBox1.Items.Add(hit.Type);
        }
Private Sub fpSpread1_CellClick(sender As Object, e As FarPoint.Win.Spread.CellClickEventArgs) Handles fpSpread1.CellClick
        Dim sv As FarPoint.Win.Spread.SpreadView
        sv = fpSpread1.GetRootWorkbook()
        Dim hit As FarPoint.Win.Spread.HitTestInformation
        hit = sv.HitTest(e.X, e.Y)
        ListBox1.Items.Add(hit.Type)
    End Sub
参照

SpreadView クラス
SpreadView メンバ
ecc8a9ee-052c-4497-a50d-e9497af9642f
6f63fc22-2dc2-42ef-810b-98251e538d1a

 

 


© MESCIUS inc. All rights reserved.