Description
Read-only. Returns the number of document sets in the current batch. This property accepts an optional parameter (bIncludeDeleted), which defaults to True.
Applicable Events
Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify
Syntax
object.DocSetCount [bIncludeDeleted]
Parameters
Object is a reference to the Form object. For more information, see Form Object (page Form Object).
DocSetCount is the command.
bIncludeDeleted is an optional parameter. If a True value is passed, the number of DocSets includes the number of deleted images and DocSets. This is the default. If a False value is passed, the number of deleted images and DocSets are not included in the count.
Example
Returns number of DocSets including deleted images and DocSets:
nCount = Form.DocSetCount
Returns number of DocSets excluding deleted images and DocSets:
nCount = Form.DocSetCount(False)