How can I get information about groups when grid.GroupBySettings.GroupByOperation == GroupByOperation.MergeCells?
Hello,
Thank you for your post. I have been looking into it and I suggest you use the following code to iterate through all the Rows and get their merged data and groups:
foreach (var item in xamGrid1.Rows) { item.MergeData.MergedGroups[0].Key.ToString(); }
Hope this helps you.