DataGridView::HitTestInfo Class
Contains information, such as the row and column indexes, about a specific coordinate pair in the DataGridView control. This class cannot be inherited.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The DataGridView::HitTestInfo type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ColumnIndex | Gets the index of the column that contains the coordinates described by the current DataGridView::HitTestInfo. |
![]() | ColumnX | Gets the x-coordinate of the beginning of the column that contains the coordinates described by the current DataGridView::HitTestInfo. |
![]() | RowIndex | Gets the index of the row that contains the coordinates described by the current DataGridView::HitTestInfo. |
![]() | RowY | Gets the y-coordinate of the top of the row that contains the coordinates described by the current DataGridView::HitTestInfo. |
![]() | Type | Gets the DataGridViewHitTestType that indicates which part of the DataGridView the coordinates described by the current DataGridView::HitTestInfo belong to. |
| Name | Description | |
|---|---|---|
![]() | Equals | Determines whether the specified Object is equal to the current DataGridView::HitTestInfo. (Overrides Object::Equals(Object).) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Overrides Object::GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents a DataGridView::HitTestInfo. (Overrides Object::ToString().) |
The HitTest method of the DataGridView class returns a DataGridView::HitTestInfo. You can use this method to determine which part of the DataGridView control is located at the specified coordinates. For example, you can call this method specifying the coordinates of a mouse click to determine the row and column indexes of the clicked cell or whether a header cell or scroll bar was clicked.
The following code example illustrates the use of this type. This example is part of a larger example available in the DataGridView::Columns property reference topic.
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.
