ListView.HitTest Method

Definition

Provides item information, given an x- and y-coordinate.

Overloads

HitTest(Point)

Provides item information, given a point.

HitTest(Int32, Int32)

Provides item information, given x- and y-coordinates.

HitTest(Point)

Source:
ListView.cs
Source:
ListView.cs
Source:
ListView.cs

Provides item information, given a point.

C#
public System.Windows.Forms.ListViewHitTestInfo HitTest(System.Drawing.Point point);

Parameters

point
Point

The Point at which to retrieve the item information. The coordinates are relative to the upper-left corner of the control.

Returns

The item information, given a point.

Exceptions

The point contains coordinates that are less than 0.

Remarks

Use this method to determine whether a point is in an item or subitem and where in the item the point is located, such as on the label or image area. If the coordinates are located outside the control, the returned ListViewHitTestInfo object has a Location property of "None"; and the Item and SubItem properties are set to null.

Applies to

.NET Framework 4.8.1 dan versi lain
Produk Versi
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

HitTest(Int32, Int32)

Source:
ListView.cs
Source:
ListView.cs
Source:
ListView.cs

Provides item information, given x- and y-coordinates.

C#
public System.Windows.Forms.ListViewHitTestInfo HitTest(int x, int y);

Parameters

x
Int32

The x-coordinate at which to retrieve the item information. The coordinate is relative to the upper-left corner of the control.

y
Int32

The y-coordinate at which to retrieve the item information. The coordinate is relative to the upper-left corner of the control.

Returns

The item information, given x- and y- coordinates.

Exceptions

The x- or y-coordinate is less than 0.

Examples

The following code example demonstrates using the HitTest method to determine the location of a mouse event in a ListView. To run this example, paste it into a Windows Form that contains a ListView named listView1 that is populated with items. Associate the MouseDown event for listView1 with the listView1_MouseDown method in this example.

C#
void HandleMouseDown(object sender, MouseEventArgs e)
{
    ListViewHitTestInfo info = listView1.HitTest(e.X, e.Y);
    MessageBox.Show(info.Location.ToString());
}

Remarks

Use this method to determine whether a point is in an item or subitem, and where in the item the point is located, such as on the label or image area. If the coordinates are located outside the control, the returned ListViewHitTestInfo object has a Location property of "None"; and the Item and SubItem properties are set to null.

Applies to

.NET Framework 4.8.1 dan versi lain
Produk Versi
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10