Click or drag to resize

PdfSearchSearchCompleted Event

Occurs when the search operation has completed, has been canceled, or has raised an exception.

Namespace: Patagames.Pdf.Net
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax
public event EventHandler<RunWorkerCompletedEventArgs> SearchCompleted

Value

EventHandlerRunWorkerCompletedEventArgs
Remarks

If the operation completed successfully, you can access the result through the Result property which represents the array of PdfSearchFoundText objects

The Error property of RunWorkerCompletedEventArgs indicates that an exception was thrown by the operation.

The Cancelled property of RunWorkerCompletedEventArgs indicates whether a cancellation request was processed by the background operation.

See Also