Export Method of the Project Object
This method allows you to save the results of project processing. You can save the results for all the documents of the project or specify particular batches 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( _ BatchIds As IntsCollection, _ ExportParams As ExportParams _ )
C++
HRESULT Export( IIntsCollection* BatchIds, IExportParams* ExportParams );
Parameters
- BatchIds
- [in] This parameter refers to the IntsCollection object that contains a set of identifiers of the batches to export results from. This parameter is optional and may be set to 0, in which case export is performed for all the documents of the project.
- ExportParams
- [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 only several documents from the batch, use the Export method of the Batch object.
Samples
C++ (COM) code
This method is used in the following code samples: Hello.
See also
15.08.2023 13:19:30