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