How to access the current record in Windows Forms GridGroupingControl

15 Jun 20211 minute to read

To access the current record, use the following code.

  • C#
  • Record rec = this.gridGroupingControl1.Table.CurrentRecord;
    Trace.WriteLine(rec.ToString());
  • VB.NET
  • Dim rec As Record = Me.gridGroupingControl1.Table.CurrentRecord
    Trace.WriteLine(rec.ToString())