'宣言 Public Overloads Function HitTest( _ ByVal x As System.Integer, _ ByVal y As System.Integer _ ) As HitTestInfo
public HitTestInfo HitTest( System.int x, System.int y )
パラメータ
- x
- クライアント座標の水平位置。
- y
- クライアント座標の垂直位置。
戻り値の型
点に関する情報を含む HitTestInfoオブジェクト。
'宣言 Public Overloads Function HitTest( _ ByVal x As System.Integer, _ ByVal y As System.Integer _ ) As HitTestInfo
public HitTestInfo HitTest( System.int x, System.int y )
次のコードは、ユーザーがクリックしたときにヒットテスト情報を表示します。
Private Sub flex_BeforeMouseDown(・・・ Dim hti As HitTestInfo = flex.HitTest(e.X, e.Y) Console.WriteLine("at {0},{1}: row {2} col {3} type {4}", _ hti.X, hti.Y, hti.Row, hti.Column, hti.Type) End Sub
private void flex_BeforeMouseDown(・・・ { HitTestInfo hti = flex.HitTest(e.X, e.Y); Console.WriteLine("at {0},{1}: row {2} col {3} type {4}", hti.X, hti.Y, hti.Row, hti.Column, hti.Type); }