PdfRpt.Core.PdfTable.GroupsManager.updateLastRowValues C# (CSharp) Method

updateLastRowValues() private method

private updateLastRowValues ( IList row ) : void
row IList
return 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));
            }
        }