2 instantiations of HitTestInfo
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGrid.cs (2)
6466HitTestInfo ci = new HitTestInfo(); 9343public static readonly HitTestInfo Nowhere = new HitTestInfo();
18 references to HitTestInfo
System.Windows.Forms (18)
winforms\Managed\System\WinForms\DataGrid.cs (18)
4020HitTestInfo location = HitTest(e.X, e.Y); 4215HitTestInfo location = HitTest(e.X, e.Y); 4334HitTestInfo ci = HitTest(e.X, e.Y); 6464public HitTestInfo HitTest(int x, int y) { 6466HitTestInfo ci = new HitTestInfo(); 6488return HitTestInfo.Nowhere; 6494return(allowColumnResize ? ci : HitTestInfo.Nowhere); 6502return HitTestInfo.Nowhere; 6511return (allowRowResize ? ci : HitTestInfo.Nowhere); 6518if (ci.col < 0 || ci.row < 0) return HitTestInfo.Nowhere; 6531public HitTestInfo HitTest(Point position) { 9185HitTestInfo hti = DataGrid.HitTest(client.X, client.Y); 9336/// <para>Allows the <see cref='System.Windows.Forms.DataGrid.HitTestInfo'/> object to inform you the 9343public static readonly HitTestInfo Nowhere = new HitTestInfo(); 9392if (value is HitTestInfo) { 9393HitTestInfo ci =(HitTestInfo) value; 9403/// <para>Gets the hash code for the <see cref='System.Windows.Forms.DataGrid.HitTestInfo'/> instance.</para>