DocumentOnCanContinue Event
|
This event is fired when any type of processing has finished with a page and there are more pages available.
Namespace:
Kofax.OmniPageCSDK.IproPlusAssembly:
Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntaxpublic event DocumentCanContinueHandler OnCanContinue
Public Event OnCanContinue As DocumentCanContinueHandler
public:
event DocumentCanContinueHandler^ OnCanContinue {
void add (DocumentCanContinueHandler^ value);
void remove (DocumentCanContinueHandler^ value);
}Value
Type:
Kofax.OmniPageCSDK.IproPlusDocumentCanContinueHandler
Remarks
The application should set the Continue parameter to True to continue with the next page or to False to stop the operation.
LoadImage, ScanImage, ImagePreprocess,
LocateZones, Recognize or ConvertResults
methods can fire this event.
The Document parameter is an object reference to the Document object, that fired this event. EventID is an auto incremented id of an
instance of the event. It is useful if events are trapped in different locations and it has to be determined whether they are same events.
See Also