Ejemplo n.º 1
0
 internal PageBreak(RenderingContext renderingContext, IReportScope reportScope, IPageBreakOwner pageBreakOwner)
 {
     m_renderingContext = renderingContext;
     m_reportScope      = reportScope;
     m_pageBreakOwner   = pageBreakOwner;
     m_pageBreakDef     = m_pageBreakOwner.PageBreak;
     if (m_pageBreakDef == null)
     {
         m_pageBreakDef = new Microsoft.ReportingServices.ReportIntermediateFormat.PageBreak();
     }
     m_isOldSnapshotOrStaticMember = false;
 }
Ejemplo n.º 2
0
 public PageBreak(RenderingContext renderingContext, IReportScope reportScope, IPageBreakOwner pageBreakOwner)
 {
     this.m_renderingContext = renderingContext;
     this.m_reportScope      = reportScope;
     this.m_pageBreakOwner   = pageBreakOwner;
     this.m_pageBreakDef     = this.m_pageBreakOwner.PageBreak;
     if (this.m_pageBreakDef == null)
     {
         this.m_pageBreakDef = new AspNetCore.ReportingServices.ReportIntermediateFormat.PageBreak();
     }
     this.m_isOldSnapshotOrStaticMember = false;
 }
Ejemplo n.º 3
0
 public bool EvaluateResetPageNumber(IReportScopeInstance romInstance, OnDemandProcessingContext context, IPageBreakOwner pageBreakOwner)
 {
     context.SetupContext(pageBreakOwner.InstancePath, romInstance);
     return(context.ReportRuntime.EvaluatePageBreakResetPageNumberExpression(this, this.m_resetPageNumber, pageBreakOwner.ObjectType, pageBreakOwner.ObjectName));
 }
Ejemplo n.º 4
0
 internal bool EvaluateDisabled(IReportScopeInstance romInstance, OnDemandProcessingContext context, IPageBreakOwner pageBreakOwner)
 {
     context.SetupContext(pageBreakOwner.InstancePath, romInstance);
     return(context.ReportRuntime.EvaluatePageBreakDisabledExpression(this, m_disabled, pageBreakOwner.ObjectType, pageBreakOwner.ObjectName));
 }