PdfRpt.Core.PdfTable.GroupsManager.updateLastRowValues C# (CSharp) Méthode

updateLastRowValues() private méthode

private updateLastRowValues ( IList row ) : void
row IList
Résultat void
        private void updateLastRowValues(IList<CellData> row)
        {
            foreach (var property in SharedData.GroupByProperties)
            {
                var currentCellValue = getCurrentCellValue(row, property);
                _currentRowValues.Add(new KeyValuePair<string, object>(property, currentCellValue));
            }
        }