You can use
CurrentCell propery on the datagrid to determin what row that has focused and then select out the wanted value from that row.
int row = dgJobList.CurrentCell.RowNumber;
int column = 9;
string cellValue = dgJobList[row,column].toString();
For more info check this.
Retrieving data from a datagrid
I hope this will help to you.