PdfRpt.ColumnsItemsTemplates.HyperlinkField.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)
        {
            var font = setFontStyles(attributes);
            var anchor = getAnchor(font, attributes);
            return new PdfPCell(anchor);
        }