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);

You might also like