Check out example codes for "datagridview select row column cell c#". It will help you in understanding the concepts better.
Code Example 1
private void setCurrentCellButton_Click(object sender, System.EventArgs e)
{
// Set the current cell to the cell in column 1, Row 0.
this.dataGridView1.CurrentCell = this.dataGridView1[1,0];
}
Learn ReactJs, React Native from akashmittal.com