C# Класс PdfRpt.Aggregates.Numbers.Minimum

Minimum function class. It only works with numbers. If you want to apply it on other data types, you need to create your own AggregateFunction by implementing the IAggregateFunc.
Наследование: IAggregateFunction
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CellAdded ( object cellDataValue, bool isNewGroupStarted ) : void

Fires after adding a cell to the main table.

ProcessingBoundary ( IList columnCellsSummaryData ) : object

A general method which takes a list of data and calculates its corresponding aggregate value. It will be used to calculate the aggregate value of each pages individually, with considering the previous pages data.

Приватные методы

Метод Описание
checkNewGroupStarted ( bool newGroupStarted ) : void
groupMin ( double cellValue ) : void
overallMin ( double cellValue ) : void

Описание методов

CellAdded() публичный Метод

Fires after adding a cell to the main table.
public CellAdded ( object cellDataValue, bool isNewGroupStarted ) : void
cellDataValue object Current cell's data
isNewGroupStarted bool Indicated starting a new group
Результат void

ProcessingBoundary() публичный Метод

A general method which takes a list of data and calculates its corresponding aggregate value. It will be used to calculate the aggregate value of each pages individually, with considering the previous pages data.
public ProcessingBoundary ( IList columnCellsSummaryData ) : object
columnCellsSummaryData IList List of data
Результат object