I would like to add a custom header and footer to my Excel, XPS, and PDF grid export like I do with Print Preview. Is that possible? As you already know to add the header in Print Preview of the Grid I use
this.ultraGridPrintDocument.Header.TextLeft = this.about.Text;
I cannot find anything similar to that with the other Grid Exports.
I explained how to do this in Excel here:
UltraGridExcelExporter - Infragistics Community
In PDF, it depends what kind of header you want. There is a header object on the section you could use. You would have to create a report, add a section, then use AddText to add text or some other element into the header and then export the grid into that section.
That got me headed in the right direction. Thanks. Is it possible on a PDF to center the heading text?