Reputation: 1227
Is there a DataGridView equivalent to DataGrid.NavigateTo()? I thought that DataGridView.SelectedColumns[] would do it but it isn't equivalent.
Upvotes: 0
Views: 187
Reputation: 49988
Maybe FirstDisplayedScrollingRowIndex
?
dataGridView1.FirstDisplayedScrollingRowIndex = rowIndex;
See this solution if you have hidden rows in your DataGridView
.
Upvotes: 1