Hi,
I've got a grid with a hierarchical datasource bound to it. Is it possible, when printing the grid, only to print the Band 0 rows?
Thanks
Jim
Hi Jim,
You can achieve this by hiding other bands of your Grid’s DisplayLayout. For example you can do something like this
for (int i = 1; i < e.Layout.Bands.Count; i++) { e.Layout.Bands[i].Hidden = true; }
Please let me know if you have any other questions.
Sincerely,Sahaja Kokkalagadda
Thank you, that worked perfectly.