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)
11903Debug.Assert(_ptMouseDownCell.X == hti._col); 11904Debug.Assert(_ptMouseDownCell.Y == hti._row); 12669&& _ptMouseDownCell.Y == -1 12670&& _ptMouseDownCell.X >= 0 12671&& _ptMouseDownCell.X < Columns.Count) 12693BeginColumnRelocation(_ptMouseDownGridCoord.X, _ptMouseDownCell.X); 14533if (_ptMouseDownCell.X == -2 14535&& _ptMouseDownCell.X == columnIndex 14536&& _ptMouseDownCell.Y == rowIndex 14537&& (_ptMouseDownCell.X == -1 14538|| _ptMouseDownCell.Y == -1 15857if (_ptMouseDownCell.X == hti._col 15858&& _ptMouseDownCell.Y == hti._row 15860|| _ptMouseDownCell.X == -1 15861|| _ptMouseDownCell.Y == -1 15862|| (_ptMouseDownCell.X == _ptCurrentCell.X && _ptMouseDownCell.Y == _ptCurrentCell.Y))) 15946if (_ptMouseDownCell.X == hti._col && _ptMouseDownCell.Y == hti._row) 16089if (_ptMouseDownCell.X != -2) 16092Debug.Assert(_ptMouseDownCell.Y != -2); 16102_ptMouseDownCell.X = hti._col; 16103_ptMouseDownCell.Y = hti._row; 16357&& _ptMouseDownCell.X == hti._col 16359&& _ptMouseDownCell.Y == hti._row 25835_ptMouseDownCell.X = -2; 25836_ptMouseDownCell.Y = -2;