Hi
I'm trying to create report as a PDF file and the report might have several PDF documents as appendixes.
01.02.RadFixedDocument reportPdf = CreateReportPdf();03.foreach(RadFixedDocument appendixPdf = appendixes)04.{05. // here I would like to scale appendixPdf to 80% of reportPdf. 06. // Then I would like to add some header/footer telling which appendix file that has been added07. reportPdf.merge(appendixPdf);08.}09.return reportPdf;
I hope the above example gives an idea on what I'm trying to do. Hope somebody can give some inspiration on how to accomplish it.
Yours
/peter
