Example #1
0
 internal Map(Microsoft.ReportingServices.OnDemandReportRendering.Map source, PageContext pageContext)
     : base(source)
 {
     Microsoft.ReportingServices.OnDemandReportRendering.Map map = (Microsoft.ReportingServices.OnDemandReportRendering.Map)m_source;
     m_pageBreakProperties = PageBreakProperties.Create(map.PageBreak, this, pageContext);
     if (!pageContext.IgnorePageBreaks)
     {
         m_pageName = map.Instance.PageName;
     }
     else if (pageContext.Common.DiagnosticsEnabled && map.PageBreak.BreakLocation != 0)
     {
         pageContext.Common.TracePageBreakIgnored(this, pageContext.IgnorePageBreaksReason);
     }
 }
Example #2
0
 internal Map(Microsoft.ReportingServices.OnDemandReportRendering.Map source, PageContext pageContext, bool createForRepeat)
     : base(source, pageContext, createForRepeat)
 {
 }