BlankReportWizard.cs 394 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using FastReport.Design;
  5. namespace FastReport.Wizards
  6. {
  7. /// <summary>
  8. /// Represents the "Blank Report" wizard.
  9. /// </summary>
  10. public class BlankReportWizard : WizardBase
  11. {
  12. /// <inheritdoc/>
  13. public override bool Run(Designer designer)
  14. {
  15. designer.CreateEmptyReport();
  16. return true;
  17. }
  18. }
  19. }