FrmSaleContract.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using CrystalDecisions.CrystalReports.Engine;
  2. using System.ComponentModel;
  3. namespace SunRoxm.BizPeri.Report.Reports
  4. {
  5. public class FrmSaleContract : ReportClass
  6. {
  7. public override string ResourceName
  8. {
  9. get
  10. {
  11. return "FrmSaleContract.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 Section2 => ((ReportDocument)this).ReportDefinition.Sections[1];
  23. [Browsable(false)]
  24. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  25. public Section Section16 => ((ReportDocument)this).ReportDefinition.Sections[2];
  26. [Browsable(false)]
  27. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  28. public Section Section8 => ((ReportDocument)this).ReportDefinition.Sections[3];
  29. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  30. [Browsable(false)]
  31. public Section Section5 => ((ReportDocument)this).ReportDefinition.Sections[4];
  32. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  33. [Browsable(false)]
  34. public Section Section9 => ((ReportDocument)this).ReportDefinition.Sections[5];
  35. [Browsable(false)]
  36. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  37. public Section Section11 => ((ReportDocument)this).ReportDefinition.Sections[6];
  38. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  39. [Browsable(false)]
  40. public Section Section13 => ((ReportDocument)this).ReportDefinition.Sections[7];
  41. [Browsable(false)]
  42. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  43. public Section Section3 => ((ReportDocument)this).ReportDefinition.Sections[8];
  44. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  45. [Browsable(false)]
  46. public Section Section14 => ((ReportDocument)this).ReportDefinition.Sections[9];
  47. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  48. [Browsable(false)]
  49. public Section Section12 => ((ReportDocument)this).ReportDefinition.Sections[10];
  50. [Browsable(false)]
  51. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  52. public Section Section10 => ((ReportDocument)this).ReportDefinition.Sections[11];
  53. [Browsable(false)]
  54. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  55. public Section Section7 => ((ReportDocument)this).ReportDefinition.Sections[12];
  56. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  57. [Browsable(false)]
  58. public Section Section4 => ((ReportDocument)this).ReportDefinition.Sections[13];
  59. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  60. [Browsable(false)]
  61. public Section Section6 => ((ReportDocument)this).ReportDefinition.Sections[14];
  62. public FrmSaleContract()
  63. : base()
  64. {
  65. }
  66. }
  67. }