PDFView4NET WinForms Edition
PageRenderingError Event (PDFPageView)




O2S.Components.PDFView4NET Namespace > PDFPageView Class : PageRenderingError Event
Gets or sets the event being fired when a page rendering error has occured.
Syntax
'Declaration
 
Public Event PageRenderingError As EventHandler(Of PageRenderingErrorEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of PageRenderingErrorEventArgs)
 
AddHandler instance.PageRenderingError, handler
public event EventHandler<PageRenderingErrorEventArgs> PageRenderingError
public: __event EventHandler<PageRenderingErrorEventArgs*>* PageRenderingError
public:
event EventHandler<PageRenderingErrorEventArgs^>^ PageRenderingError
Event Data

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

PropertyDescription
Gets or sets a value indicating whether the page rendering should be cancelled or not.  
Gets the associated error message.  
Gets the page number where the error appeared.  
Gets the type of the error that appeared.  
Requirements

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

See Also