Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
350
UltraGridDocumentExporter with footer
posted

Hi,

 

1. Its posible to add something like a footer after the section where the UltraGrid was exported?.

I used BeginExport() to add something like a Header, but i thought in EndExport() i can do the footer but the args doesnt  show a Section or something like that.

 

2. And if is posible to export 2 UltraGrid in one UltraGridDocumentExporter ?

 

BestRegards.

Parents
  • 37774
    Verified Answer
    posted

    1) There are overloads of the Export method of the document exporter that allow you to provide either an ISection or a Report object, so you could certainly create your own section and add your own footer after the exporting logic has been completed.

    2) This is also possible, since the overloads to the Export method take the grid that you'll be exporting.  You could even export them to the same section (via same logic in answer above), assuming that the grids are approximately the same page size (basically that the second grid doesn't cause the first grid to become clipped, since the exporter will adjust the page size, if necessary).

    -Matt

Reply Children