DocumentSelection.<Document name>.Next
Syntax:
Returned value:
If True, the next document has been selected. False - the end of the selection has been reached.
Description:
Availability:
Example:
Selection = Documents.ArticlesReceipt.Select(); While Selection.Next() Do // process selection records EndDo; |