What it does
The Page2 data type stores information about a document page. It contains an expanded set of fields.Fields
| Name | Type | Description |
|---|---|---|
Id | int | The ID of the page. |
PageIndex | int | Page index. |
SourceFileName | string | The ID of the source image file. |
SourcePageNumber | string | The number of the image in the source file. |
SourceType | int | The type of the image source. Possible values: 0 (image loaded from a file, such as a folder, FTP folder, or Hot Folder, or added with drag and drop), 1 (image received from a scanner), 2 (image received from the Scanning Station, from MAPI, or from a POP3 server). |
SourceDetails | string | Information about the path to the folder or the scanning driver, depending on the selected source type. |
Comment | string | Comment on the page. |
ErrorText | string | A description of the page processing errors. Completed automatically by the Application Server. |
ExternalId | string | The external ID of the page. If left empty, the parameter is completed automatically by the Application Server and is the same as Id. |
HasAttachments | bool | A flag that shows whether the page has attachments. |
UncertainSymbols | int | The number of uncertain characters. |
VerificationSymbols | int | The number of verified characters. |
TotalSymbols | int | The total number of characters. |
FileVersion | int | The version of the page file on the server. |
Flags | int | A set of flags that describe the status of the page. The value combines the flags listed after this table. |
Flags field values
TheFlags value is a combination of the following flags. Only the flags useful when working with tasks and the Web Services API methods are listed.
| Flag | Value | Meaning |
|---|---|---|
BIF_IsAnalyzed | 0x100 | The page is analyzed. |
BIF_IsRecognized | 0x200 | The page is recognized. |
BIF_IsVerified | 0x400 | The page is verified. |
BIF_IsExported | 0x800 | The page is exported. |
BIF_HasRuleErrors | 0x10000 | The page contains rule execution errors. |
BIF_HasRuleWarnings | 0x20000 | The page contains rule execution warnings. |
BIF_HasMergeVersionErrors | 0x80000 | The page contains errors from merging double verification results (the verification results do not match). |
BIF_HasUserAttachments | 0x100000 | The page has attachments. |
BIF_HasUnmatchedFieldErrors | 0x200000 | The page contains unmatched fields. |
BIF_NeedsPreprocessing | 0x800000 | The page needs preprocessing. |
BIF_IsManuallyCreated | 0x1000000 | The page was created manually. |
BIF_IsExcludedFromAutomaticAssembling | 0x2000000 | The page is excluded from automatic assembly. |
BIF_IsSourceImageAttached | 0x4000000 | A source image file is attached to the page. |
