12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using CrystalDecisions.CrystalReports.Engine;
- using System.ComponentModel;
- namespace SunRoxm.BizPeri.Report.Reports
- {
- public class UIFrmReceivableStrikeStatistics : ReportClass
- {
- public override string ResourceName
- {
- get
- {
- return "UIFrmReceivableStrikeStatistics.rpt";
- }
- set
- {
- }
- }
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- 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 PageHeaderSection2 => ((ReportDocument)this).ReportDefinition.Sections[2];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section GroupHeaderSection1 => ((ReportDocument)this).ReportDefinition.Sections[3];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section3 => ((ReportDocument)this).ReportDefinition.Sections[4];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section GroupFooterSection1 => ((ReportDocument)this).ReportDefinition.Sections[5];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section Section4 => ((ReportDocument)this).ReportDefinition.Sections[6];
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Browsable(false)]
- public Section Section5 => ((ReportDocument)this).ReportDefinition.Sections[7];
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public Section PageFooterSection2 => ((ReportDocument)this).ReportDefinition.Sections[8];
- public UIFrmReceivableStrikeStatistics()
- : base()
- {
- }
- }
- }
|