1 write to _ptMouseDownCell
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
477_ptMouseDownCell = new Point(-2, -2);
28 references to _ptMouseDownCell
System.Windows.Forms (28)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
2982internal Point MouseDownCellAddress => _ptMouseDownCell;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (27)
11909Debug.Assert(_ptMouseDownCell.X == hti._col); 11910Debug.Assert(_ptMouseDownCell.Y == hti._row); 12679&& _ptMouseDownCell.Y == -1 12680&& _ptMouseDownCell.X >= 0 12681&& _ptMouseDownCell.X < Columns.Count) 12703BeginColumnRelocation(_ptMouseDownGridCoord.X, _ptMouseDownCell.X); 14544if (_ptMouseDownCell.X == -2 14546&& _ptMouseDownCell.X == columnIndex 14547&& _ptMouseDownCell.Y == rowIndex 14548&& (_ptMouseDownCell.X == -1 14549|| _ptMouseDownCell.Y == -1 15873if (_ptMouseDownCell.X == hti._col 15874&& _ptMouseDownCell.Y == hti._row 15876|| _ptMouseDownCell.X == -1 15877|| _ptMouseDownCell.Y == -1 15878|| (_ptMouseDownCell.X == _ptCurrentCell.X && _ptMouseDownCell.Y == _ptCurrentCell.Y))) 15962if (_ptMouseDownCell.X == hti._col && _ptMouseDownCell.Y == hti._row) 16105if (_ptMouseDownCell.X != -2) 16108Debug.Assert(_ptMouseDownCell.Y != -2); 16118_ptMouseDownCell.X = hti._col; 16119_ptMouseDownCell.Y = hti._row; 16373&& _ptMouseDownCell.X == hti._col 16375&& _ptMouseDownCell.Y == hti._row 25852_ptMouseDownCell.X = -2; 25853_ptMouseDownCell.Y = -2;