Is there and control I can use when it is exporting to not export the child bands?
Hi,
What you should do is handle the BeginExport event on the UltraGridExcelExporter. The event passes in a Layout which is a clone of the grid's DisplayLayout. Since it's a clone, you can modify it any way you like and it will affect the export without affecting the on-screen grid. So the easiest thing for you to do is to simply set ViewStyle to SingleBand on this layout.
Thanks for the idea, although I figured another way out to accomplish this.
Since my information was coming from a DSO I saved it as a binary to a memory stream and reset the child bands on that DSO and then reset the grid to use this DSO when I wanted it to. Once it was done it would reset it back to the original DSO.