Click or drag to resize

WFHandlerAddWFInput Method

Use this method to add an input object to the workflow.

Namespace:  Kofax.OmniPageCSDK.IproPlus
Assembly:  Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntax
public void AddWFInput(
	Object InputObj,
	[OptionalAttribute] Object ImgPageList
)

Parameters

InputObj
Type: SystemObject
ImgPageList (Optional)
Type: SystemObject
Remarks

An input object can be an image or an OPD file name, or any such URL that can be resolved by the link step (optionally specified in the CreateWF method). The inputObj parameter must be a string or string array with the file name(s). The imgPageList parameter is reserved for future use.

The following list contains the valid inputObj values:

  • exact file name - [C:\\ActualImage\\Test1.tif]
  • full file path for files with given extension - [C:\\TestImages\\*.jpg]
  • full file path for subfolders and files in them with given extension - [c:\\TestImages\\*\\*.tif]
  • array of items of the above types - [C:\\ActualImage\\Test1.tif, C:\\TestImages\\*.jpg, C:\\TestImages\\*.tif]

The following inputObj values are invalid:

  • file name without drive and/or path - [Test1.tif, \\ActualImage\\Test1.tif]
  • relative path - [..\\TestImages\\*.tif]

See Also