A class used to store output documents assembled from the source pages.
A Splitter Script activity does not return the confidence values for a class.
Properties
| Name | Type | Access Level | Description |
|---|
ResultClassName | string | Read-write | The document class name set by the user. |
Pages | Page[] | Read-only | The list of pages in the document. |
Constructors
| Call | Description |
|---|
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. |