Note: This class is new in the .NET Framework version 2.0.
Contains information about an area of a ListView control or a ListViewItem.
Namespace: System.Windows.Forms Assembly: System.Windows.Forms (in system.windows.forms.dll)
The following code example demonstrates using the ListViewHitTestInfo class and the HitTest method to determine the location of a MouseDown event. To run this code, paste it into a Windows Form that contains a ListView named listView1 that is populated with items. Associate the MouseDown event for the form and listView1 with the HandleMouseDown method in this example.
PrivateSub HandleMouseDown(ByVal sender AsObject, ByVal e As MouseEventArgs) _
HandlesMe.MouseDown, listView1.MouseDown
Dim info As ListViewHitTestInfo = listView1.HitTest(e.X, e.Y)
MessageBox.Show(info.Location.ToString())
EndSub
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, 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.