PdfRpt.Core.PdfTable.MainTableCellsEvent.applyCustomCellLayout C# (CSharp) Method

applyCustomCellLayout() private method

private applyCustomCellLayout ( PdfPCell cell, Rectangle position, PdfContentByte canvases ) : void
cell iTextSharp.text.pdf.PdfPCell
position iTextSharp.text.Rectangle
canvases iTextSharp.text.pdf.PdfContentByte
return void
        private void applyCustomCellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)
        {
            if (_pdfRptCell.ItemTemplate == null) return;
            _pdfRptCell.ItemTemplate.CellRendered(cell, position, canvases, _pdfRptCell);
        }