Hi,
Stimulsoft provided the option to add empty page to the end of an MDC file.But i want to add empty page to middle of an MDC file.Please provide the the solution as soon as possible.
Thanks in advance,
Jayakumar
Add empty page to middle of an MDC file?
-
- Posts: 85
- Joined: Sat Jan 20, 2007 4:21 am
Add empty page to middle of an MDC file?
Hello,
Thank you.
You can use following code:jayakumargr wrote:Stimulsoft provided the option to add empty page to the end of an MDC file.But i want to add empty page to middle of an MDC file.Please provide the the solution as soon as possible.
Code: Select all
yourReport.RenderedPages.Add(new StiPage(yourReport));
yourReport.RenderedPages.Insert(indexOfNewPage, new StiPage(yourReport));
yourReport.RenderedPages.RemoveAt(indexOfPage);