Example:
C# Code
for (i = 0; i <= RadGridView1.Rows.Count; i++)
{
for (j = 0; j <= RadGridView1.Columns.Count; j++)
{
dynamic di = RadGridView1.Rows(i).Cells(j).Value;
}
}
//or
foreach (GridViewRowInfo _row in RadGridView1.Rows)
{
foreach (GridViewColumn _column in RadGridView1.Columns)
{
dynamic di = _row.Cells(_column.Name).Value;
}
}
VB.NET Code
For i = 0 To RadGridView1.Rows.Count
For j = 0 To RadGridView1.Columns.Count
Dim di = RadGridView1.Rows(i).Cells(j).Value
Next
Next
'or
For Each _row As GridViewRowInfo In RadGridView1.Rows
For Each _column As GridViewColumn In RadGridView1.Columns
Dim di = _row.Cells(_column.Name).Value
Next
Next