示例#1
0
 private void AddPdfTitle <T>(int columnCount, TableFactory table)
 {
     if (!string.IsNullOrEmpty(this.PdfTitle))
     {
         table.AddRow();
         table.AddReportTitle(this.PdfTitle, columnCount, ReportService.GetTitleStyles <T>());
         table.EndRow();
     }
 }