C# 클래스 PdfRpt.Aggregates.Numbers.Maximum

Maximum 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
파일 보기 프로젝트 열기: VahidN/PdfReport 1 사용 예제들

공개 메소드들

메소드 설명
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
groupMax ( double cellValue ) : void
overallMax ( 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