Occurs just before the WebViewer queues a report for rendering.
[Visual Basic]
Public Event QueuingReport() As QueuingReportEventHandler
[C#]
public event QueuingReportEventHandler QueuingReport();
The event handler receives an argument of type QueuingReportEventArgs containing data related to this event. The following QueuingReportEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Report | An ActiveReport object. |
The Report property of the QueuingReportEventArgs class will contain the report specified via the Report property of this WebViewer object. If no report was specified or the report is no longer available then the Report property will be null. This event can be useful for situations when a postback occurs after a very long period of time, or if a PostBack were to occur in a isolated application instance, such as in a web farm or web garden.
WebViewer Class | WebViewer Members
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.