TextOptions

TextOptions(bool)

Initializes a new instance of the TextOptions class.

public TextOptions(bool useRawModeIfPossible)
Parameter Type Description
useRawModeIfPossible Boolean The value that indicates whether the raw mode is used.

See Also


TextOptions(bool, bool)

Initializes a new instance of the TextOptions class with the OCR usage option.

public TextOptions(bool useRawModeIfPossible, bool useOcr)
Parameter Type Description
useRawModeIfPossible Boolean The value that indicates whether the raw mode is used.
useOcr Boolean The value that indicates whether the OCR functionality is used to extract a text.

See Also


TextOptions(bool, bool, OcrOptions)

Initializes a new instance of the TextOptions class with the ability to set OCR options.

public TextOptions(bool useRawModeIfPossible, bool useOcr, OcrOptions ocrOptions)
Parameter Type Description
useRawModeIfPossible Boolean The value that indicates whether the raw mode is used.
useOcr Boolean The value that indicates whether the OCR functionality is used to extract a text.
ocrOptions OcrOptions The additional options for OCR functionality.

See Also