Is there a property or event to enable the export of hidden grid columns?
Handle the BeginExport event. The event will pass you an ExportLayout. This is a clone of the DisplayLayout of the grid. So you can modify this layout any way you like and it will affect the export without affecting the on-screen grid. So you could, for example, set the Hidden property on some of the grid columns to false.
Thanks for the help!!