Initializes a new instance of the Processor class.
Syntax
'Declaration
Public Function New( _
ByVal As FormSet, _
ByVal As LicenseKeychain, _
ByVal As Boolean _
)
'Usage
Dim formSet As FormSet
Dim licenseKeychain As LicenseKeychain
Dim windowless As Boolean
Dim instance As New Processor(formSet, licenseKeychain, windowless)
public Processor(
FormSet ,
LicenseKeychain ,
bool
)
public: Processor(
FormSet* ,
LicenseKeychain* ,
bool
)
public:
Processor(
FormSet^ ,
LicenseKeychain^ ,
bool
)
Parameters
- formSet
-
An Accusoft.FormDirectorSdk.FormSet processor object that this
processor object will use for determining how to identify forms
and process fields.
- licenseKeychain
- A LicenseKeychain object that holds the unlock codes that will be used to unlock Accusoft's form processing components, which are created by the Processor.
- windowless
-
Indicates whether the caller is a windowless application. If true, EvaluationMode.Timeout is used.
Exceptions
Exception | Description |
System.ArgumentNullException | Thrown if the formSet or licenseKeychain parmeter is null. |
System.FormatException | Thrown if the formSet's Identification property contains Content that is not
valid for the Type. For example, the Type is FormFix/Identification and the Content cannot be
read by a FormFix IdentificationProcessor's ReadFromStream method. |
See Also