This document discusses generating reports from data in a grid view. It shows that you can generate a report with a single call to the GenerateReport static method, passing in the grid view. It also shows that you can generate a report while customizing generation options by creating a ReportGenerationOptions object and passing it along with the grid view into the GenerateReport method.
This document discusses generating reports from data in a grid view. It shows that you can generate a report with a single call to the GenerateReport static method, passing in the grid view. It also shows that you can generate a report while customizing generation options by creating a ReportGenerationOptions object and passing it along with the grid view into the GenerateReport method.
This document discusses generating reports from data in a grid view. It shows that you can generate a report with a single call to the GenerateReport static method, passing in the grid view. It also shows that you can generate a report while customizing generation options by creating a ReportGenerationOptions object and passing it along with the grid view into the GenerateReport method.
This document discusses generating reports from data in a grid view. It shows that you can generate a report with a single call to the GenerateReport static method, passing in the grid view. It also shows that you can generate a report while customizing generation options by creating a ReportGenerationOptions object and passing it along with the grid view into the GenerateReport method.
Download as TXT, PDF, TXT or read online from Scribd
Download as txt, pdf, or txt
You are on page 1of 1
Note that you can generate a report in code - with a single call to the Generat
eReport static method...
XtraReport report = ReportGenerator.GenerateReport(gridView1); And to generate the report using report generation options available in our Repo rt Generation Wizard... ReportGenerationOptions options = new ReportGenerationOptions(); options.PrintGroupFooter = DefaultBoolean.False; // ... XtraReport report = ReportGenerator.GenerateReport(gridView1, options);