FrmOverallSearchStatistics.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using CrystalDecisions.CrystalReports.Engine;
  2. using System.ComponentModel;
  3. namespace SunRoxm.BizPeri.Report.Reports
  4. {
  5. public class FrmOverallSearchStatistics : ReportClass
  6. {
  7. public override string ResourceName
  8. {
  9. get
  10. {
  11. return "FrmOverallSearchStatistics.rpt";
  12. }
  13. set
  14. {
  15. }
  16. }
  17. [Browsable(false)]
  18. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  19. public Section Section1 => ((ReportDocument)this).ReportDefinition.Sections[0];
  20. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  21. [Browsable(false)]
  22. public Section Section8 => ((ReportDocument)this).ReportDefinition.Sections[1];
  23. [Browsable(false)]
  24. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  25. public Section Section10 => ((ReportDocument)this).ReportDefinition.Sections[2];
  26. [Browsable(false)]
  27. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  28. public Section GroupHeaderSection1 => ((ReportDocument)this).ReportDefinition.Sections[3];
  29. [Browsable(false)]
  30. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  31. public Section Section3 => ((ReportDocument)this).ReportDefinition.Sections[4];
  32. [Browsable(false)]
  33. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  34. public Section GroupFooterSection1 => ((ReportDocument)this).ReportDefinition.Sections[5];
  35. [Browsable(false)]
  36. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  37. public Section Section4 => ((ReportDocument)this).ReportDefinition.Sections[6];
  38. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  39. [Browsable(false)]
  40. public Section Section5 => ((ReportDocument)this).ReportDefinition.Sections[7];
  41. public FrmOverallSearchStatistics()
  42. : base()
  43. {
  44. }
  45. }
  46. }