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

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