Set the option for handling OCR-ed documents.
Sub OcrOption(newVal As Long)
newVal
One of optOcr values:
OPT_OCR_TEXT_IMAGE = 0,
OPT_OCR_TEXTONLY = 1,
OPT_OCR_IMAGEONLY = 2
Please refer to the list of return exceptions.
oConverter = CreateObject("EasyConverter.PDF2Word.3")
' Set option for handling OCR-ed documents
oConverter.OcrOption = OPT_OCR_TEXT_IMAGE
Call oConverter.ConvertToWord(inFileName, outFileName)