'Declaration Public Event GenerateReportProgression As GenerateReportProgressionEventHandler
'Usage Dim instance As Report Dim handler As GenerateReportProgressionEventHandler AddHandler instance.GenerateReportProgression, handler
public event GenerateReportProgressionEventHandler GenerateReportProgression
The event handler receives an argument of type GenerateReportProgressionEventArgs containing data related to this event. The following GenerateReportProgressionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
ProgressionValue | Gets a value representing the total number of pages or rows generated so far. |
Status | Gets the status of the report. |
ValueType | Gets a value representing the type of progression information used when generating the report. |
Progression information is provided on a page or row basis. To determine what type of progression value is used, the ValueType can be consulted.
The GenerateReportProgression event can be raised multiple times for 1 report generation. For example, in the case of HTML exportation, the GenerateReportProgression event will be raised for the preparation phase and then for each page/row being exported. In all other cases, there will be a preparation phase for the first page/row and then an exporting/printing phase for each page/row.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2