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

addDayNamesRow() private method

private addDayNamesRow ( ) : void
return void
        private void addDayNamesRow()
        {
            var days = getDays();
            foreach (var day in days)
            {
                var cell = new PdfPCell(getPhrase(day));
                cell.BackgroundColor = CalendarAttributes.DayNamesRowBackgroundColor;
                setCommonPdfPCellProperties(cell);
                _mainTable.AddCell(cell);
            }
        }