PdfRpt.ColumnsItemsTemplates.InlineField.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 (RenderCell == null)
                return new PdfPCell();

            return RenderCell(new InlineFieldData
            {
                Attributes = attributes,
                BasicProperties = BasicProperties,
                Canvases = null,
                Cell = null,
                ConditionalFormatFormula = ConditionalFormatFormula,
                Position = null
            });
        }