4 writes to trackRow
System.Windows.Forms (4)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (4)
2816this.trackRow = index; 12735this.trackRow = hti.row; 18512this.trackRow = hti.row; 25970this.trackRow = -1;
23 references to trackRow
System.Windows.Forms (23)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (23)
6353DataGridViewRow dataGridViewRow = this.Rows.SharedRow(this.trackRow); 6355dataGridViewRow.GetHeightInfo(this.trackRow, out height, out minimumHeight); 6357int delta = y - (GetRowYFromIndex(this.trackRow) + height) + 1; 6362if (!OnRowHeightInfoPushed(this.trackRow, proposedHeight, minimumHeight)) 6366dataGridViewRow = this.Rows[this.trackRow]; // Unsharing row 18956if (this.trackRowEdge >= this.trackRow && hti.row > this.trackRowEdge && this.trackRowEdge >= 0) 18962else if (this.trackRowEdge > this.trackRow && hti.row < this.trackRowEdge && hti.row >= this.trackRow && this.trackRowEdge >= 0) 18968else if (hti.row > this.trackRow && this.trackRowEdge == -1) 18970SelectRowRange(this.Rows.GetNextRow(this.trackRow, DataGridViewElementStates.Visible), 18974else if (this.trackRowEdge <= this.trackRow && hti.row < this.trackRowEdge && this.trackRowEdge >= 0) 18981else if (this.trackRowEdge < this.trackRow && hti.row > this.trackRowEdge && hti.row <= this.trackRow && this.trackRowEdge >= 0) 18988else if (hti.row < this.trackRow && this.trackRowEdge == -1) 18991this.Rows.GetPreviousRow(this.trackRow, DataGridViewElementStates.Visible), 18995else if (this.trackRowEdge > this.trackRow && hti.row < this.trackRow) 18997SelectRowRange(this.Rows.GetNextRow(this.trackRow, DataGridViewElementStates.Visible), 19000this.Rows.GetPreviousRow(this.trackRow, DataGridViewElementStates.Visible), 19004else if (hti.row > this.trackRow && this.trackRowEdge < this.trackRow && this.trackRowEdge >= 0) 19007this.Rows.GetPreviousRow(this.trackRow, DataGridViewElementStates.Visible), 19009SelectRowRange(this.Rows.GetNextRow(this.trackRow, DataGridViewElementStates.Visible),