I use the report in web site.I set the page margins in asp.net Page.It work well when preview in IE.But It do not work afert printed.why?
Did it need set something else?
this is my code
StiPage stiPage = (StiPage)report.Pages["Page1"];
stiPage.Margins = new StiMargins((Double) 2.54, 1, (Double) 2.54, 1);
StiDataBand stiDataBand = (StiDataBand)stiPage.Components["DataSpine8X6"];
page margins is no work
page margins is no work
Hi Silade,
The only way to avoid this behavior is to use export to pdf and then printing from pdf. There is no guarantee that HTML representation of the report will be printed with the same dimensions. But in Pdf representation of the report is exactly as in preview in browser.
Thank you.
The only way to avoid this behavior is to use export to pdf and then printing from pdf. There is no guarantee that HTML representation of the report will be printed with the same dimensions. But in Pdf representation of the report is exactly as in preview in browser.
Thank you.