Skip to main content
A class used to store output documents assembled from the source pages.
Note: A Splitter Script activity does not return the confidence values for a class.

Properties

NameTypeAccess LevelDescription
ResultClassNamestringRead-writeThe document class name set by the user.
PagesPage[]Read-onlyThe list of pages in the document.

Constructors

CallDescription
AssembledDocument()Creates an instance of the AssembledDocument class with an empty list of pages and an empty ResultClassName property.
AssembledDocument(string ClassName)Creates an instance of the AssembledDocument class with an empty list of pages. Assigns the ClassName value to the ResultClassName property of the instance.
AssembledDocument(SourcePage page)Creates an instance of the AssembledDocument class with an empty ResultClassName property and a list of pages containing a single page passed as an argument.
AssembledDocument(SourcePage[] pages)Creates an instance of the AssembledDocument class with an empty ResultClassName property and a list of pages passed as an argument.
AssembledDocument(string resultClassName, SourcePage[] pages)Creates an instance of the AssembledDocument class with a list of pages passed as an argument. Assigns the ClassName value to the ResultClassName property of the instance.