加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ExportHelper.cs 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
LenkaGuo123 提交于 2015-09-17 10:27 . new version
using GrapeCity.ActiveReports.Extensibility.Rendering;
using GrapeCity.ActiveReports.Document;
using GrapeCity.ActiveReports.Export;
namespace ActiveReportsDemo
{
class SectionExport
{
public string DisplayName { get; set; }
public string Filter { get; set; }
public string DefaultFileName { get; set; }
public IDocumentExportEx Settings { get; set; }
public void Export(SectionDocument sectionDocument, string filePath)
{
Settings.Export(sectionDocument, filePath);
}
}
class PageExport
{
public string DisplayName { get; set; }
public string Filter { get; set; }
public IRenderingExtension RenderingExtension { get; set; }
public string DefaultFileName { get; set; }
public ISettings Settings { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化