예제 #1
0
 internal Report(ReportItem parent, IntermediateFormatVersion version, Guid reportVersion)
     : base(parent)
 {
     m_intermediateFormatVersion = version;
     m_reportVersion             = reportVersion;
     m_startPage = 0;
     m_endPage   = 0;
 }
예제 #2
0
 internal bool IsSimpleTextBox(IntermediateFormatVersion intermediateFormatVersion)
 {
     Global.Tracer.Assert(intermediateFormatVersion != null);
     if (intermediateFormatVersion.IsRS2005_WithSimpleTextBoxOptimizations)
     {
         return(IsSimpleTextBox());
     }
     return(false);
 }
예제 #3
0
 internal Report(int id, int idForReportItems)
     : base(id, null)
 {
     m_intermediateFormatVersion = new IntermediateFormatVersion();
     m_reportVersion             = Guid.NewGuid();
     m_height           = "11in";
     m_width            = "8.5in";
     m_dataSources      = new DataSourceList();
     m_reportItems      = new ReportItemCollection(idForReportItems, normal: true);
     m_pageAggregates   = new DataAggregateInfoList();
     m_exprCompiledCode = new byte[0];
 }