AddToDocument() public method

Starts rendering of the MainTable
public AddToDocument ( ) : void
return void
コード例 #1
0
 // Private Methods (8)
 private void addMainTable()
 {
     _pdfRptRenderMainTable = new RenderMainTable
     {
         PdfRptData = _pdfRptData,
         ColumnSummaryCellsData = ColumnSummaryCellsData,
         PdfDoc = PdfDoc,
         PdfWriter = PdfWriter,
         CurrentRowInfoData = LastRenderedRowData
     };
     _pdfRptRenderMainTable.AddToDocument();
 }