linanxian
我在你附件的基础上,创建了一个可以直接运行的应用程序,你看一下这个应用程序和你测试的问题是否一样,如果一样,我们可以在此基础上来调查该问题:
我修改了 ReportStart 的代码为以下代码:
- this.PageSettings.Margins = new GrapeCity.ActiveReports.Document.Section.Margins(0.5f, 0.5f, 0.5f, 0.5f);
- this.PageSettings.DefaultPaperSize = false;
- this.PageSettings.PaperHeight = 7F;
- this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Custom;
- this.PageSettings.PaperName = "カスタム紙";
- this.PageSettings.PaperWidth = 11.31f;
- this.PrintWidth = this.PageSettings.PaperWidth - this.PageSettings.Margins.Left + this.PageSettings.Margins.Right;
复制代码
|