get cell value

  • Thread starter Thread starter Guest
  • Start date Start date
heres one way:
string myValue = myDataGrid[myDataGrid.CurrentRowIndex,4].ToString();
4 represents the column index
 
Back
Top