ActiveReports.Viewer3 Request technical support
DownloadError Event
See Also 


Occurs when an exception is thrown while downloading a document asynchronously from the LoadUrl location.

Syntax

Visual Basic (Declaration) 
Public Event DownloadError() As UrlErrorEventHandler
Visual Basic (Usage)Copy Code
Dim instance As Document
Dim handler As UrlErrorEventHandler
 
AddHandler instance.DownloadError, handler
C# 
public event UrlErrorEventHandler DownloadError()

Event Data

The event handler receives an argument of type UrlErrorEventArgs containing data related to this event. The following UrlErrorEventArgs properties provide information specific to this event.

PropertyDescription
Exception Gets or sets a value that specifies the exception that caused the download error.

See Also