Click or drag to resize

TextTranslatorFinish Method

Allow a foreign translator to perform any necessary cleanup.

Namespace:  Atalasoft.Ocr
Assembly:  Atalasoft.dotImage.Ocr (in Atalasoft.dotImage.Ocr.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public void Finish(
	OcrEngine engine,
	OcrDocument doc,
	bool successful,
	Object translationObject
)

Parameters

engine
Type: Atalasoft.OcrOcrEngine
The engine that has done the recognition.
doc
Type: Atalasoft.OcrOcrDocument
The recognized document.
successful
Type: SystemBoolean
Indicates that recognition was successful.
translationObject
Type: SystemObject
An object originally provided by the return value of the Prepare(OcrEngine, OcrDocument) method.

Implements

IForeignTranslatorFinish(OcrEngine, OcrDocument, Boolean, Object)
Remarks
While some foreign translator implementations may not need an associated engine, it is best to always provide one as some translators will require it.
See Also