IWorksDriver interface : Ignore method

Ignore method
Description
VWorks software calls the Ignore method as follows:
1
The plugin notifies VWorks software that an error occurred during a task.
2
VWorks software does the following:
a
Calls the GetErrorInfo method to get a text string from the plugin that describes the error. See “GetErrorInfo method” .
b
c
See “GetErrorInfo method” for a picture of a standard error dialog box.
3
If the user clicks the Ignore and Continue… button, VWorks software calls the Ignore method to tell the plugin to ignore the error.
The plugin should continue the task, if possible, or exit the task if continuing would be dangerous or impossible. A call to the Ignore method should not cause an unsafe condition, which could result in a new error or a premature completion of the task.
If all errors encountered during a task are ignored, the system should be able to continue as if the failing step was skipped.
Syntax
 
HRESULT Ignore(
[out,retval] enum ReturnCode *retVal
);
Parameter
 
0 = The request was completed (RETURN_SUCCESS)
1 = Something was wrong with the input, so the request was not completed (RETURN_BAD_ARGS)
2 = The request was not completed (RETURN_FAIL)
Related information