DataGrid.HitTestInfo Class
Contains information about a part of the System.Windows.Forms.DataGrid at a specified coordinate. This class cannot be inherited.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The DataGrid.HitTestInfo type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Column | Gets the number of the column the user has clicked. |
![]() | Row | Gets the number of the row the user has clicked. |
![]() | Type | Gets the part of the System.Windows.Forms.DataGrid control, other than the row or column, that was clicked. |
| Name | Description | |
|---|---|---|
![]() | Equals | Indicates whether two objects are identical. (Overrides Object.Equals(Object).) |
![]() | GetHashCode | Gets the hash code for the DataGrid.HitTestInfo instance. (Overrides Object.GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ToString | Gets the type, row number, and column number. (Overrides Object.ToString().) |
| Name | Description | |
|---|---|---|
![]() ![]() | Nowhere | Indicates that a coordinate corresponds to part of the System.Windows.Forms.DataGrid control that is not functioning. |
The DataGrid.HitTestInfo class, in conjunction with the HitTest method of the DataGrid control, is used to determine which part of a DataGrid control the user has clicked. The DataGrid.HitTestInfo class contains the row, column, and part of the grid that was clicked. See the DataGrid.HitTestType enumeration returned by the Type property for a complete list of grid parts.
To return a DataGrid.HitTestInfo, invoke the HitTest method from the MouseDown event of DataGrid control. Pass the x and y properties of the MouseEventArgs to the HitTest method.
The following example uses the HitTest method in a MouseDown event to return the DataGrid.HitTestInfo object. The row, column, and part of the grid are then printed.
private void dataGrid1_MouseDown (object sender, System.Windows.Forms.MouseEventArgs e) { Console.WriteLine(); System.Windows.Forms.DataGrid.HitTestInfo myHitTest; // Use the DataGrid control's HitTest method with the x and y properties. myHitTest = dataGrid1.HitTest(e.X,e.Y); Console.WriteLine(myHitTest); Console.WriteLine("Column " + myHitTest.Column); Console.WriteLine("Row " + myHitTest.Row); Console.WriteLine("Type " + myHitTest.Type); Console.WriteLine("ToString " + myHitTest.ToString()); Console.WriteLine("Hit " + myHitTest.Type.ToString()); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
