| PdfSearchSearchCompleted Event |
Occurs when the search operation has completed, has been canceled, or has raised an exception.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public event EventHandler<RunWorkerCompletedEventArgs> SearchCompleted
Public Event SearchCompleted As EventHandler(Of RunWorkerCompletedEventArgs)
public:
event EventHandler<RunWorkerCompletedEventArgs^>^ SearchCompleted {
void add (EventHandler<RunWorkerCompletedEventArgs^>^ value);
void remove (EventHandler<RunWorkerCompletedEventArgs^>^ value);
}
member SearchCompleted : IEvent<EventHandler<RunWorkerCompletedEventArgs>,
RunWorkerCompletedEventArgs>
/** @event */
public void add_SearchCompleted (EventHandler<RunWorkerCompletedEventArgs> value)
/** @event */
public void remove_SearchCompleted (EventHandler<RunWorkerCompletedEventArgs> value)
function add_SearchCompleted(value);
function remove_SearchCompleted(value);
Value
EventHandlerRunWorkerCompletedEventArgsRemarks 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