6 writes to LastTotallyDisplayedScrollingCol
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (6)
4571this.displayedBandsInfo.LastTotallyDisplayedScrollingCol = -1; 4614this.displayedBandsInfo.FirstDisplayedScrollingCol = this.displayedBandsInfo.LastTotallyDisplayedScrollingCol = -1; 4715this.displayedBandsInfo.LastTotallyDisplayedScrollingCol = -1; // no totally visible scrolling column at all 4728this.displayedBandsInfo.LastTotallyDisplayedScrollingCol = dataGridViewColumn.Index; 4733this.displayedBandsInfo.LastTotallyDisplayedScrollingCol = -1; 20297this.displayedBandsInfo.LastTotallyDisplayedScrollingCol = -1;
12 references to LastTotallyDisplayedScrollingCol
System.Windows.Forms (12)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (12)
8834if (this.displayedBandsInfo.LastTotallyDisplayedScrollingCol != -1 && 8835this.Columns.GetNextColumn(this.Columns[this.displayedBandsInfo.LastTotallyDisplayedScrollingCol], DataGridViewElementStates.Visible, DataGridViewElementStates.None) == null) 8990(this.displayedBandsInfo.LastTotallyDisplayedScrollingCol == -1 || 8991this.Columns.GetNextColumn(this.Columns[this.displayedBandsInfo.LastTotallyDisplayedScrollingCol], DataGridViewElementStates.Visible, DataGridViewElementStates.None) != null)) 9660if (hti.col != this.displayedBandsInfo.FirstDisplayedScrollingCol || this.displayedBandsInfo.LastTotallyDisplayedScrollingCol >= 0) 26159else if (this.displayedBandsInfo.LastTotallyDisplayedScrollingCol == -1 || 26160(this.displayedBandsInfo.LastTotallyDisplayedScrollingCol != columnIndex && 26161this.Columns.DisplayInOrder(this.displayedBandsInfo.LastTotallyDisplayedScrollingCol, columnIndex))) 26231if (this.displayedBandsInfo.LastTotallyDisplayedScrollingCol >= 0) 26233dataGridViewColumnTmp = this.Columns[this.displayedBandsInfo.LastTotallyDisplayedScrollingCol]; 26311Debug.Assert(this.displayedBandsInfo.LastTotallyDisplayedScrollingCol >= -1 && this.displayedBandsInfo.LastTotallyDisplayedScrollingCol < this.Columns.Count);