Hi
How can I clone a RadFixedPage and added to a new RadFixedDocument
I tried with this code but I get an error so I think that I need to clone the page before I can added to another document
RadFixedDocument originalDocument = pdfProcessingProvider.Import(inputPdfStream); RadFixedDocument newDocument = new RadFixedDocument(); foreach (var page in originalDocument.Pages) { newDocument.Pages.Add(page);//ERROR!! }
Thank you
