PdfRpt.Core.Helper.TableCellDefinitionsExt.mapBasicProperties C# (CSharp) Method

mapBasicProperties() private static method

private static mapBasicProperties ( PdfRpt.Core.Contracts.CellAttributes pdfRptTableCellDefinition ) : void
pdfRptTableCellDefinition PdfRpt.Core.Contracts.CellAttributes
return void
        private static void mapBasicProperties(CellAttributes pdfRptTableCellDefinition)
        {
            if (pdfRptTableCellDefinition.ItemTemplate != null && pdfRptTableCellDefinition.ItemTemplate.BasicProperties != null)
            {
                pdfRptTableCellDefinition.ItemTemplate.BasicProperties.MapBasicPropertiesTo(pdfRptTableCellDefinition.BasicProperties);
            }
            applyTemplateColors(pdfRptTableCellDefinition.BasicProperties, pdfRptTableCellDefinition.BasicProperties);
        }