Customising Export options in Crystal Report Viewer

crystal-reports

I am using SAP crystal reports in Visual Studio 2010.I want to customise crystal report viewer
export options. That is, I want to show only export to pdf,and to excel in my crystal report viewer.
How I can do this

Best Answer

Your can restrict the ReportViewer in 13.0.x using:

ReportViewer.AllowedExportFormats = (int)(ViewerExportFormats.ExcelFormat | ViewerExportFormats.PdfFormat);
Related Topic