SubGroups Select

Hello!

Is there a way to iterate through all Groups and sub groups?
I would like to create summary for each subgroup, is there a way i can
implement that? 

LP Marko

You'd need to loop from grid.FixedRows to grid.RowCount - 1 and when grid.IsNode(rowindex) = true, this indicates there is a group or subgroup node.

That did it!

Thank you very much.

Also with Grid.GetNodeSpan I can get the size of group in rows.