ProgressChangedEventHandler Delegate
Represents the method that will handle the RasterizerProgress event.
public delegate void ProgressChangedEventHandler(Object sender, RasterizerProgressChangedEventArgs e)
Public Delegate Sub ProgressChangedEventHandler(sender As Object, e As RasterizerProgressChangedEventArgs)
Parameters
- sender
- Object
The source of the event.
A RasterizerProgressChangedEventArgs that contains the event data.
Inheritance: ObjectDelegateMulticastDelegateProgressChangedEventHandler
Licensing Info
This delegate is a DynamicPDF Rasterizer feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Rasterizer selected.
- A DynamicPDF Rasterizer for .NET v4.X Developer license.
Examples
For example refer to RasterizerProgress event.Remarks
When you create a ProgressChangedEventHandler 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.