ParserSettings constructor

Contents
[ ]

init

Initializes a new instance of the ParserSettings class with the logger.

def __init__(self, logger):
    ...
Parameter Type Description
logger groupdocs.parser.options.ILogger An instance of class that implements ILogger interface.

init

Initializes a new instance of the ParserSettings class with the OCR Connector.

def __init__(self, ocr_connector):
    ...
Parameter Type Description
ocr_connector groupdocs.parser.options.OcrConnectorBase An instance of class that inherits OcrConnectorBase class to provide OCR functionality.

init

Initializes a new instance of the ParserSettings class with the External Resource Handler.

def __init__(self, external_resource_handler):
    ...
Parameter Type Description
external_resource_handler groupdocs.parser.options.ExternalResourceHandler An instance of class that inherits ExternalResourceHandler class to provide the control of external resources loading.

init

Initializes a new instance of the ParserSettings class with logger and OCR Connector.

def __init__(self, logger, ocr_connector):
    ...
Parameter Type Description
logger groupdocs.parser.options.ILogger An instance of class that implements ILogger interface.
ocr_connector groupdocs.parser.options.OcrConnectorBase An instance of class that inherits OcrConnectorBase class to provide OCR functionality.

init

Initializes a new instance of the ParserSettings class with logger, OCR Connector and External Resource Handler.

def __init__(self, logger, ocr_connector, external_resource_handler):
    ...
Parameter Type Description
logger groupdocs.parser.options.ILogger An instance of class that implements ILogger interface.
ocr_connector groupdocs.parser.options.OcrConnectorBase An instance of class that inherits OcrConnectorBase class to provide OCR functionality.
external_resource_handler groupdocs.parser.options.ExternalResourceHandler An instance of class that inherits ExternalResourceHandler class to provide the control of external resource loading.

See Also