PdfRpt.AggregateProvider.ProcessingBoundary C# (CSharp) Method

ProcessingBoundary() public method

A general method which takes a list of data and calculates its corresponding aggregate value. It will be used to calculate the aggregate values of each pages individually, without considering the previous pages data.
public ProcessingBoundary ( IList columnCellsSummaryData ) : object
columnCellsSummaryData IList List of data
return object
        public object ProcessingBoundary(IList<SummaryCellData> columnCellsSummaryData)
        {
            return ColumnAggregateFunction.ProcessingBoundary(columnCellsSummaryData);
        }