DataGrid.HitTest Method (Point)
Gets information, such as row and column number of a clicked point on the grid, about the grid using a specific Point.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- position
- Type: System.Drawing.Point
A Point that represents single x,y coordinate.
Return Value
Type: System.Windows.Forms.DataGrid.HitTestInfoA DataGrid.HitTestInfo that contains specific information about the grid.
The DataGrid.HitTestInfo, in conjunction with the HitTest method of the System.Windows.Forms.DataGrid control, is used to determine which part of a System.Windows.Forms.DataGrid control the user has clicked. The DataGrid.HitTestInfo contains the row, column, and part of the grid that was clicked. Additionally, the Type property returns a DataGrid.HitTestType enumeration.
The HitTest method takes an x and y argument supplied by the System.Windows.Forms.DataGrid control's DragDrop, DragEnter, DragOver, MouseDown, MouseMove, MouseUp and MouseWheel events.
The following code example uses the HitTest method in occurs when a user clicks on a grid.
Private Sub DataGrid1_MouseDown(ByVal sender As Object, ByVal e As MouseEventArgs) Dim hti As DataGrid.HitTestInfo hti = grid.HitTest(New Point(e.X, e.Y)) Select Case hti.Type Case System.Windows.Forms.DataGrid.HitTestType.None Console.WriteLine("You clicked the background.") Case System.Windows.Forms.DataGrid.HitTestType.Cell Console.WriteLine("You clicked cell at row " & hti.Row & ", col " & hti.Column) Case System.Windows.Forms.DataGrid.HitTestType.ColumnHeader Console.WriteLine("You clicked the column header for column " & hti.Column) Case System.Windows.Forms.DataGrid.HitTestType.RowHeader Console.WriteLine("You clicked the row header for row " & hti.Row) Case System.Windows.Forms.DataGrid.HitTestType.ColumnResize Console.WriteLine("You clicked the column resizer for column " & hti.Column) Case System.Windows.Forms.DataGrid.HitTestType.RowResize Console.WriteLine("You clicked the row resizer for row " & hti.Row) Case System.Windows.Forms.DataGrid.HitTestType.Caption Console.WriteLine("You clicked the caption") Case System.Windows.Forms.DataGrid.HitTestType.ParentRows Console.WriteLine("You clicked the parent row") End Select End Sub
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.