Is there a way to export to Excel without the formatting? The Exporter automatically adds a lot of formatting such as borders, header colors, and fonts. Is there a way to get just a plain data dump into Excel?
Thanks.
Hi,
Trap the UltraGridExcelExporters BeginExport event. The event args pass you a Layout. This is a clone of the grid's DisplayLayout. So you can modify this layout however you like and it will affect the export, but not the on-screen grid. So you could reset any Appearance properties you don't want to export, for example.