Hi,
How can i exclude some of the Grid columns to export, when exporting UltraGrid data in excel.
Use the BeginExport event on the UltraGridExcelExporter. This event will pass you a Layout, which is a clone of the grid layout. Since it's a clone, you can make changes to this layout and it will not affect the on-screen grid, only the export. So you can hide columns or band, change colors, or anything else you like.
Hi Mike,
If there are two bands but I only want band[0] to export, how can I make that happen?
thanks
-Ken