彩票走势图

【Stimulsoft Reports.WinForms教程】将多个文件导出为一个大PDF

翻译|使用教程|编辑:王香|2018-09-05 10:43:26.000|阅读 539 次

概述:本文主要讲解在Stimulsoft如何将多个文件导出为一个大PDF。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

【下载Stimulsoft Reports.Ultimate最新版本】

此示例项目演示了如何将许多不同的报表导出到一个大的PDF文件,并创建包含大量报表副本的PDF文件。例如,创建一个呈现的报表,并在输出PDF文件中添加1000次。创建新的报表对象并启用必要的选项:

private void buttonExportClick(object sender, EventArgs e)
{
    var report = new StiReport();
    report.ReportCacheMode = StiReportCacheMode.On;
    report.RenderedPages.CanUseCacheMode = true;
    report.RenderedPages.CacheMode = true;
    report.RenderedPages.Clear();
...

然后,将渲染的报表添加1000次:

...
    var tempReport = new StiReport();
    for (int index = 0; index < 1000; index++)
    {
        using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(
               "ExportManyFilesToOneBigPDF.MasterDetail.mdc"))
        {
            tempReport.LoadDocument(stream);
        }
        tempReport.ReportUnit = report.ReportUnit;
 
        foreach (StiPage page in tempReport.RenderedPages)
        {
            page.Report = tempReport;
            page.Guid = System.Guid.NewGuid().ToString().Replace("-", "");
            report.RenderedPages.Add(page);
        }
    }
 ...

最后,导出报表:

...
    report.ExportDocument(StiExportFormat.Pdf, "d:\\1.pdf");
}

示例代码的结果如下图所示:

Stimulsoft


标签:报表报表控件StimulsoftWinForms

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP