我在Visual Studio 2010中使用SAP水晶报表。我想自定义水晶报表查看器 出口选择。也就是说,我想只显示导出到pdf,并在我的水晶报表查看器中表现出色 我该怎么做
答案 0 :(得分:5)
您可以使用以下方法限制13.0.x中的ReportViewer:
ReportViewer.AllowedExportFormats = (int)(ViewerExportFormats.ExcelFormat | ViewerExportFormats.PdfFormat);
答案 1 :(得分:4)
首先,在您的代码背后包含以下命名空间:
使用CrystalDecisions.Shared;
然后,在页面加载事件中写下以下代码:
protected void Page_Load(object sender,EventArgs e) 的 {强>
CrystalReportViewer2.AllowedExportFormats = (int) (ViewerExportFormats.ExcelRecordFormat | ViewerExportFormats.PdfFormat);
}
答案 2 :(得分:1)
this.crystalReportViewer1.AllowedExportFormats =(int)CrystalDecisions.Shared.ViewerExportFormats.PdfFormat;