2 writes to FirstDisplayedScrollingRowIndex
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridView.cs (1)
2941
this.
FirstDisplayedScrollingRowIndex
= firstDisplayedCell.RowIndex;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
19414
this.
FirstDisplayedScrollingRowIndex
= rowIndexPrevious;
10 references to FirstDisplayedScrollingRowIndex
System.Windows.Forms (10)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
1989
bool isFirstDisplayedRow = rowIndex == this.DataGridView.
FirstDisplayedScrollingRowIndex
;
winforms\Managed\System\WinForms\DataGridViewRow.cs (3)
1934
if (this.owner.Index < this.owner.DataGridView.
FirstDisplayedScrollingRowIndex
)
1947
else if (this.owner.Index >= this.owner.DataGridView.
FirstDisplayedScrollingRowIndex
&&
1948
this.owner.Index < this.owner.DataGridView.
FirstDisplayedScrollingRowIndex
+ this.owner.DataGridView.DisplayedRowCount(true /*includePartialRow*/))
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (6)
2121
useRowShortcut = this.DataGridView.
FirstDisplayedScrollingRowIndex
== -1 &&
2124
else if (this.DataGridView.
FirstDisplayedScrollingRowIndex
!= -1 &&
2125
rowIndex > this.DataGridView.
FirstDisplayedScrollingRowIndex
)
2165
useRowShortcut = this.DataGridView.
FirstDisplayedScrollingRowIndex
== -1 &&
2168
else if (this.DataGridView.
FirstDisplayedScrollingRowIndex
!= -1 &&
2169
rowIndex > this.DataGridView.
FirstDisplayedScrollingRowIndex
)