Given the record, how do I access any column value in that row (both hidden and visible columns)?
(Views :1523)

With the record, you can access the underlying DataRowView by Record.GetData().

C#
Record rec = this.gridGroupingControl1.Table.CurrentRecord ;
Console.WriteLine(rec);
VB
Dim rec As Record = Me.gridGroupingControl1.Table.CurrentRecord
Console.WriteLine(rec)

Sample:

http://websamples.syncfusion.com/samples/kb/grid.windows/GGCColumnValue/main.htm

::adCenter::