MoveDocument Method of the Batch Object
This method moves a document to this batch from another batch. Use this method if you need to, for example, move a document from a working batch to a training one for training.
Note: After the call to this method, both the document moved and the document shifted to the next position become unavailable. Re-open them before working with them further.
Syntax
Visual Basic .NET
Sub MoveDocument( _ DocumentToMove As Document, _ InsertionPoint As Document _ )
C++
HRESULT MoveDocument( IDocument* DocumentToMove, IDocument* InsertionPoint );
Parameters
- DocumentToMove
- [in] This parameter refers to the Document object that contains the document to be moved.
- InsertionPoint
- [in] This parameter refers to the Document object that occupies the place in the batch where the new document should be inserted. The document to which this parameter refers will be shifted to the next position in the batch.
You may pass NULL for this parameter if you want to insert the new document at the end.
Return values
This method has no specific return values. It returns the standard return values of ABBYY FlexiCapture SDK functions.
See also
8/15/2023 1:19:30 PM