UIFrmReceivableStrikeDetails.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using CrystalDecisions.CrystalReports.Engine;
  2. using System.ComponentModel;
  3. namespace SunRoxm.BizPeri.Report.Reports
  4. {
  5. public class UIFrmReceivableStrikeDetails : ReportClass
  6. {
  7. public override string ResourceName
  8. {
  9. get
  10. {
  11. return "UIFrmReceivableStrikeDetails.rpt";
  12. }
  13. set
  14. {
  15. }
  16. }
  17. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  18. [Browsable(false)]
  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 PageHeaderSection1 => ((ReportDocument)this).ReportDefinition.Sections[2];
  26. [Browsable(false)]
  27. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  28. public Section GroupHeaderSection1 => ((ReportDocument)this).ReportDefinition.Sections[3];
  29. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  30. [Browsable(false)]
  31. public Section GroupHeaderSection2 => ((ReportDocument)this).ReportDefinition.Sections[4];
  32. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  33. [Browsable(false)]
  34. public Section GroupHeaderSection3 => ((ReportDocument)this).ReportDefinition.Sections[5];
  35. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  36. [Browsable(false)]
  37. public Section PageHeaderSection2 => ((ReportDocument)this).ReportDefinition.Sections[6];
  38. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  39. [Browsable(false)]
  40. public Section GroupFooterSection3 => ((ReportDocument)this).ReportDefinition.Sections[7];
  41. [Browsable(false)]
  42. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  43. public Section GroupFooterSection2 => ((ReportDocument)this).ReportDefinition.Sections[8];
  44. [Browsable(false)]
  45. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  46. public Section GroupFooterSection1 => ((ReportDocument)this).ReportDefinition.Sections[9];
  47. [Browsable(false)]
  48. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  49. public Section Section4 => ((ReportDocument)this).ReportDefinition.Sections[10];
  50. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  51. [Browsable(false)]
  52. public Section Section5 => ((ReportDocument)this).ReportDefinition.Sections[11];
  53. public UIFrmReceivableStrikeDetails()
  54. : base()
  55. {
  56. }
  57. }
  58. }