DataGridView.HitTest Method
Assembly: System.Windows.Forms (in system.windows.forms.dll)
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 method. This example is part of a larger example available in the Columns property reference topic.
private DataGridViewCell clickedCell; private void dataGridView1_MouseDown(object sender, MouseEventArgs e) { // If the user right-clicks a cell, store it for use by the shortcut menu. if (e.Button == MouseButtons.Right) { DataGridView.HitTestInfo hit = dataGridView1.HitTest(e.X, e.Y); if (hit.Type == DataGridViewHitTestType.Cell) { clickedCell = dataGridView1.Rows[hit.RowIndex].Cells[hit.ColumnIndex]; } } }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.