typedef enum
{
DOC2_PARSE_AUTO = 0,
DOC2_PARSE_LEGACY,
DOC2_PARSE_STANDARD,
DOC2_PARSE_FAST
} DOC2_PAGEPARSER;
The DOC2_PAGEPARSER enumerated type lists the different page-parsing algorithms that are possible.
Value |
Meaning |
DOC2_PARSE_AUTO |
The Engine will determine at run-time which page-parsing algorithm to use. (Default.) |
DOC2_PARSE_LEGACY |
The page-parsing algorithm used in the toolkit until version 10.0. |
DOC2_PARSE_STANDARD |
The most accurate page-parsing algorithm of the Engine. |
DOC2_PARSE_FAST |
A simplified version of DOC2_PARSE_LEGACY. This algorithm does not try to find tables on the page. It is the fastest (but least accurate) parsing algorithm available. Use it only for simple page-parsing tasks! |
This enumerated type is used by the following structure: