FrmPurchaseBill.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using CrystalDecisions.CrystalReports.Engine;
  2. using CrystalDecisions.Shared;
  3. using System.ComponentModel;
  4. namespace SunRoxm.BizPeri.Report.Reports
  5. {
  6. public class FrmPurchaseBill : ReportClass
  7. {
  8. public override string ResourceName
  9. {
  10. get
  11. {
  12. return "FrmPurchaseBill.rpt";
  13. }
  14. set
  15. {
  16. }
  17. }
  18. [Browsable(false)]
  19. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  20. public Section Section1 => ((ReportDocument)this).ReportDefinition.Sections[0];
  21. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  22. [Browsable(false)]
  23. public Section Section2 => ((ReportDocument)this).ReportDefinition.Sections[1];
  24. [Browsable(false)]
  25. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  26. public Section Section8 => ((ReportDocument)this).ReportDefinition.Sections[2];
  27. [Browsable(false)]
  28. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  29. public Section Section3 => ((ReportDocument)this).ReportDefinition.Sections[3];
  30. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  31. [Browsable(false)]
  32. public Section Section9 => ((ReportDocument)this).ReportDefinition.Sections[4];
  33. [Browsable(false)]
  34. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  35. public Section Section10 => ((ReportDocument)this).ReportDefinition.Sections[5];
  36. [Browsable(false)]
  37. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  38. public Section Section11 => ((ReportDocument)this).ReportDefinition.Sections[6];
  39. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  40. [Browsable(false)]
  41. public Section Section6 => ((ReportDocument)this).ReportDefinition.Sections[7];
  42. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  43. [Browsable(false)]
  44. public Section Section5 => ((ReportDocument)this).ReportDefinition.Sections[8];
  45. [Browsable(false)]
  46. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  47. public IParameterField Parameter_CessIn => (IParameterField)(object)((ReportDocument)this).DataDefinition.ParameterFields[0];
  48. public FrmPurchaseBill()
  49. : base()
  50. {
  51. }
  52. }
  53. }