DataGridView.HitTestInfo Class

Definition

Contains information, such as the row and column indexes, about a specific coordinate pair in the DataGridView control. This class cannot be inherited.

public: ref class DataGridView::HitTestInfo sealed
public sealed class DataGridView.HitTestInfo
type DataGridView.HitTestInfo = class
Public NotInheritable Class DataGridView.HitTestInfo
Inheritance
DataGridView.HitTestInfo

Examples

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.

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];
        }
    }
}
Private clickedCell As DataGridViewCell

Private Sub dataGridView1_MouseDown(ByVal sender As Object, _
    ByVal e As MouseEventArgs) Handles dataGridView1.MouseDown

    ' If the user right-clicks a cell, store it for use by the 
    ' shortcut menu.
    If e.Button = MouseButtons.Right Then
        Dim hit As DataGridView.HitTestInfo = _
            dataGridView1.HitTest(e.X, e.Y)
        If hit.Type = DataGridViewHitTestType.Cell Then
            clickedCell = _
                dataGridView1.Rows(hit.RowIndex).Cells(hit.ColumnIndex)
        End If
    End If

End Sub

Remarks

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.

Fields

Nowhere

Specifies that the point is not on a cell or cell header. This field is read-only.

Properties

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.

Methods

Equals(Object)

Determines whether the specified Object is equal to the current DataGridView.HitTestInfo.

GetHashCode()

Serves as a hash function for a particular type.

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.

Applies to

See also