| AspriseOCRStartEngine Method  | 
            Starts the OCR engine; does nothing if the engine has already been started.
            
 
Namespace: asprise_ocr_apiAssembly: asprise-ocr-api (in asprise-ocr-api.dll) Version: 15.3.1.0 (15.3.1.0)
Syntaxpublic void StartEngine(
	string lang,
	string speed = "fastest",
	params Object[] startProperties
)
Public Sub StartEngine ( 
	lang As String,
	Optional speed As String = "fastest",
	ParamArray startProperties As Object()
)
public:
void StartEngine(
	String^ lang, 
	String^ speed = L"fastest", 
	... array<Object^>^ startProperties
)
member StartEngine : 
        lang : string * 
        ?speed : string * 
        startProperties : Object[] 
(* Defaults:
        let _speed = defaultArg speed "fastest"
*)
-> unit 
Parameters
- lang
 - Type: SystemString
e.g., "eng" - speed (Optional)
 - Type: SystemString
e.g., "fastest" - startProperties
 - Type: SystemObject
property specifications, can be a single Dictionary object or inline specification in pairs. Valid property names are defined in this class, e.g., START_PROP_DICT_CUSTOM_DICT_FILE, etc. 
See Also