12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using CrystalDecisions.CrystalReports.Engine;
- using System.ComponentModel;
- namespace SunRoxm.BizPeri.Report.Reports
- {
- public class FrmSaleContract : ReportClass
- {
- public override string ResourceName
- {
- get
- {
- return "FrmSaleContract.rpt";
- }
- set
- {
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section1 => ((ReportDocument)this).ReportDefinition.Sections[0];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section2 => ((ReportDocument)this).ReportDefinition.Sections[1];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section16 => ((ReportDocument)this).ReportDefinition.Sections[2];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section8 => ((ReportDocument)this).ReportDefinition.Sections[3];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section5 => ((ReportDocument)this).ReportDefinition.Sections[4];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section9 => ((ReportDocument)this).ReportDefinition.Sections[5];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section11 => ((ReportDocument)this).ReportDefinition.Sections[6];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section13 => ((ReportDocument)this).ReportDefinition.Sections[7];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section3 => ((ReportDocument)this).ReportDefinition.Sections[8];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section14 => ((ReportDocument)this).ReportDefinition.Sections[9];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section12 => ((ReportDocument)this).ReportDefinition.Sections[10];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section10 => ((ReportDocument)this).ReportDefinition.Sections[11];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section7 => ((ReportDocument)this).ReportDefinition.Sections[12];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section4 => ((ReportDocument)this).ReportDefinition.Sections[13];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section6 => ((ReportDocument)this).ReportDefinition.Sections[14];
- public FrmSaleContract()
- : base()
- {
- }
- }
- }
|