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
75
Export To PDF (Duplicates)
posted

I also contacted support on this but perhaps someone could still shine a new light on this nonetheless:

I'm having a UltraWebGrid with a UltraWebGridDocumentExporter which exports a PDF file. What I would like is the generation of 1 PDF which holds information about the grid (visible lines of the grid). This is default behavior and works fine. Next is that I would like that page to be duplicated 4 times in the same PDF creating one PDF with 4 pages of the same data.

According to support this is not really supported but I thought why not fire the question on the forum anyhow.

  • 10880
    Verified Answer
    posted

    You could probably do something like this:

    //I am doing this on a button click on my page 

    Report r = new Report();
    for (int x = 0; x < 4; x++)
    {
        UltraWebGridDocumentExporter1.Export(UltraWebGrid1, r.AddSection());
    }