Home › Forums › WinForms controls › Xceed Grid for WinForms › How to read cell contents › Reply To: How to read cell contents
I’m not really a VB.NET programmer, but I think it should look like this:<code>For Each row In grd.SelectedRows
Dim cell As Cell = row.Cells[“col1”]
Dim value As Object = cell.Value
Next row</code>
Imported from legacy forums. Posted by Tommy (had 284 views)