Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridView::HitTest Method (Int32, Int32)

 

Returns location information, such as row and column indices, given x- and y-coordinates.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
DataGridView::HitTestInfo^ HitTest(
	int x,
	int y
)

Parameters

x
Type: System::Int32

The x-coordinate.

y
Type: System::Int32

The y-coordinate.

Return Value

Type: System.Windows.Forms::DataGridView::HitTestInfo^

A DataGridView::HitTestInfo that contains the location information.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft