PdfRpt.Calendar.MonthCalendar.createCellDescription C# (CSharp) Method

createCellDescription() private method

private createCellDescription ( PdfRpt.Calendar.MonthTableCell cell ) : PdfPCell
cell PdfRpt.Calendar.MonthTableCell
return iTextSharp.text.pdf.PdfPCell
        private PdfPCell createCellDescription(MonthTableCell cell)
        {
            var cellDescription = getCellDescription(cell);
            PdfPCell descriptionCell = null;
            if (!string.IsNullOrEmpty(cellDescription))
            {
                descriptionCell = new PdfPCell(getPhrase(cellDescription));
            }
            return descriptionCell;
        }