ExpressSTO.cs 1.2 KB

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