PdfRpt.ColumnsItemsTemplates.PdfTemplateField.RenderingCell C# (CSharp) Method

RenderingCell() public method

Custom cell's content template as a PdfPCell
public RenderingCell ( PdfRpt.Core.Contracts.CellAttributes attributes ) : PdfPCell
attributes PdfRpt.Core.Contracts.CellAttributes
return iTextSharp.text.pdf.PdfPCell
        public PdfPCell RenderingCell(CellAttributes attributes)
        {
            if (shouldUseCachedImage)
            {
                return new PdfPCell(_image, true);
            }

            createImageFromImportedPage(attributes);
            return new PdfPCell(_image, true);
        }