PAGEPARSER
typedef enum
{
PARSE_AUTO,
PARSE_LEGACY,
PARSE_STANDARD,
PARSE_FAST
} PAGEPARSER;
The PAGEPARSER enumerated type represents the possible page parser algorithms.
Value |
Meaning |
PARSE_AUTO |
Specifies that the Engine will determine at run-time which page parser algorithm will be applied. (Default.) |
PARSE_LEGACY |
Identifies the page-parsing algorithm used in the toolkit till version 10.0. |
PARSE_STANDARD |
Identifies the most accurate page parsing algorithm of the Engine. |
PARSE_FAST |
This algorithm can be treated as a simplified variant of PARSE_LEGACY: this algorithm doesn't 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! |
Comments
This enumerated type is used by the following structure: