Ejemplo n.º 1
0
 public ReportItem(IDefinitionPath parentDefinitionPath, bool inSubtotal, RenderingContext renderingContext)
     : base(parentDefinitionPath, renderingContext)
 {
     this.m_definitionPath          = DefinitionPathConstants.GetCollectionDefinitionPath(parentDefinitionPath, 0);
     this.m_inSubtotal              = inSubtotal;
     this.m_isListContentsRectangle = true;
 }
Ejemplo n.º 2
0
 public ReportItem(IReportScope reportScope, IDefinitionPath parentDefinitionPath, int indexIntoParentCollectionDef, AspNetCore.ReportingServices.ReportIntermediateFormat.ReportItem reportItemDef, RenderingContext renderingContext)
     : base(reportScope, parentDefinitionPath, reportItemDef, renderingContext)
 {
     this.m_definitionPath = DefinitionPathConstants.GetCollectionDefinitionPath(parentDefinitionPath, indexIntoParentCollectionDef);
     base.m_reportItemDef.ROMScopeInstance = this.ReportScope.ReportScopeInstance;
 }
Ejemplo n.º 3
0
 public ReportItem(IDefinitionPath parentDefinitionPath, int indexIntoParentCollectionDef, bool inSubtotal, AspNetCore.ReportingServices.ReportRendering.ReportItem renderReportItem, RenderingContext renderingContext)
     : base(parentDefinitionPath, renderReportItem, renderingContext)
 {
     this.m_definitionPath = DefinitionPathConstants.GetCollectionDefinitionPath(parentDefinitionPath, indexIntoParentCollectionDef);
     this.m_inSubtotal     = inSubtotal;
 }
 private ReportSection(Report reportDef, int indexInCollection)
 {
     this.m_reportDef      = reportDef;
     this.m_sectionIndex   = indexInCollection;
     this.m_definitionPath = DefinitionPathConstants.GetCollectionDefinitionPath(reportDef, indexInCollection);
 }