PdfRpt.Core.PdfTable.GroupsManager.updateLastRowValues C# (CSharp) 메소드

updateLastRowValues() 개인적인 메소드

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