Skip to main content
This method is implemented in FRE for Windows.
This method creates the ScanManager object.

Syntax

C++

HRESULT CreateScanManager(
  VARIANT_BOOL    WriteScanLog,
  IScanManager**    Result
);

C#

IScanManager CreateScanManager(
  bool WriteScanLog
);

Visual Basic .NET

Function CreateScanManager( _
  [WriteScanLog As Boolean = True] _
) As IScanManager

Parameters

WriteScanLog [in] This optional parameter specifies whether the log of scanning operations will be written. By default, it is TRUE. Set this parameter to FALSE if you wish to cancel logging; this may be useful when your application does not have access to the default folder for logs. Result [out, retval] A pointer to IScanManager* pointer variable that receives the interface pointer of the resulting ScanManager object. Must not be NULL.

Return values

This method has no specific return values. It returns the standard return values of ABBYY FineReader Engine functions.

See also

Engine ScanManager