Export Method of the Batch Object
This method saves results of processing of the specified documents in selected location. You can save the results from all the documents of the batch or specify particular documents to export results from. To set the destination, file format and other export settings, use the ExportParams object.
Note: Recalling the Export method with the same export settings is not performed.
Syntax
Visual Basic .NET
Sub Export( _ DocIds As IntsCollection, _ Params As ExportParams _ )
C++
HRESULT Export( IIntsCollection* DocIds, IExportParams* Params );
Parameters
- DocIds
- [in] This parameter refers to the IntsCollection object that contains a set of identifiers of the documents to export results from. This parameter may be 0, in which case export is performed for all the documents of the batch.
- Params
- [in] This parameter refers to the ExportParams object that contains parameters of export. This parameter may be 0, in which case for each document the export parameters of the corresponding Document Definition are used.
Note: If there is no corresponding Document Definition, the export parameters of the IBatchTypeParams::ExportParamsForUnknownDocuments property are used. If there is no batch type, the export parameters of the IProjectProperties::ExportParamsForUnknownDocuments property are used.
Return values
This method has no specific return values. It returns the standard return values of ABBYY FlexiCapture SDK functions.
Remarks
To export results from documents of several batches, use the Export method of the Project object.
Samples
C++ (COM) code
See also
8/15/2023 1:19:30 PM