How to Access the Current Record in WinForms GridGroupingControl

18 Nov 20181 minute to read

To access the current record, use the following code.

Record rec = this.gridGroupingControl1.Table.CurrentRecord;
Trace.WriteLine(rec.ToString());
Dim rec As Record = Me.gridGroupingControl1.Table.CurrentRecord
Trace.WriteLine(rec.ToString())