FileOpenFailedEventHandler Delegate

Represents the method that will handle the FileOpenFailed event.

public delegate void FileOpenFailedEventHandler(Object sender, FileOpenFailedEventArgs e)
Public Delegate Sub FileOpenFailedEventHandler(sender As Object, e As FileOpenFailedEventArgs)

Parameters

sender
Object

The source of the event.

e
FileOpenFailedEventArgs

A FileOpenFailedEventArgs that contains the event data.

Inheritance: ObjectDelegateMulticastDelegateFileOpenFailedEventHandler

Licensing Info

This delegate is a DynamicPDF Viewer feature. One of the following is required for non-evaluation usage:

Examples

For example refer to FileOpenFailed event.

Remarks

When you create a FileOpenFailedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

See Also

ceTe.DynamicPDF.Viewer

In this topic