com.crystaldecisions.sdk.occa.report.lib
Interface IPrintProgressListener


public interface IPrintProgressListener


Method Summary
 void printingCancelled(IReportSource reportSource)
          Reports that the printing of the report has been cancelled.
 void printingComplete(IReportSource reportSource)
          Reports that the printing of the report has completed.
 void printingProgress(IReportSource reportSource, int pageN, float percentageDone)
          Reports the approximate degree of completion of the printing of the report.
 void printingStarted(IReportSource reportSource)
          Reports that the printing of the report has started.
 

Method Detail

printingStarted

void printingStarted(IReportSource reportSource)
Reports that the printing of the report has started.

Parameters:
reportSource - the report being printed.

printingProgress

void printingProgress(IReportSource reportSource,
                      int pageN,
                      float percentageDone)
Reports the approximate degree of completion of the printing of the report.

Parameters:
reportSource - the report being printed.
pageN - the current page number.
percentageDone - a value between 0 and 100.

printingCancelled

void printingCancelled(IReportSource reportSource)
Reports that the printing of the report has been cancelled.

Parameters:
reportSource - the report being printed.

printingComplete

void printingComplete(IReportSource reportSource)
Reports that the printing of the report has completed.

Parameters:
reportSource - the report being printed.