2 writes to ptMouseDownGridCoord
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridView.cs (1)
522this.ptMouseDownGridCoord = new Point(-1, -1);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
16542this.ptMouseDownGridCoord = new Point(e.X, e.Y);
3 references to ptMouseDownGridCoord
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (3)
13041if (Math.Abs(this.ptMouseDownGridCoord.X - ptGridCoord.X) >= DataGridView.DragSize.Width || 13042Math.Abs(this.ptMouseDownGridCoord.Y - ptGridCoord.Y) >= DataGridView.DragSize.Height) 13044BeginColumnRelocation(this.ptMouseDownGridCoord.X, this.ptMouseDownCell.X);