PAGE_PARSER
typedef enum
{
PARSER_AUTO = 0,
PARSER_LEGACY,
PARSER_STANDARD,
PARSER_FAST
} PAGE_PARSER;
The PAGE_PARSER enumerated type represents the possible page parser algorithms.
Value |
Meaning |
PARSER_AUTO |
Specifies that the Engine will determine at run-time which page parser algorithm will be applied. (Default.) |
PARSER_LEGACY |
Identifies the page-parsing algorithm used in the toolkit till version 10.0. |
PARSER_STANDARD |
Identifies the most accurate page parsing algorithm of the Engine. |
PARSER_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 property: