PdfRpt.ColumnsItemsTemplates.PdfTemplateField.RenderingCell C# (CSharp) Метод

RenderingCell() публичный Метод

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

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