//To get all the records of the group
string data = "";
for (int i = 0; i < this.gridGroupingControl1.Table.TopLevelGroup.Groups.Count; i++)
{
for(int j=0;j<this.gridGroupingControl1.Table.TopLevelGroup.Groups[i].Records.Count;j++)
{
data = this.gridGroupingControl1.Table.TopLevelGroup.Groups[i].Records[j].ToString()+"\n";
}
}
If the TopLevelGroup.Groups has the nested group then the records collection is available in the inner group of the Groups collection that is Groups[Index].Groups[InnerGroupIndex].Records has the record values.
Please let me know if you have any concern.
Regards,
Adhi.