Image Viewer CP ActiveX Control

OCRGetRecognizedCharBottom

 

Returns the bottom position in pixel of one of the characters recognized during the last OCR process done by the OCRStartScan() method.

Public Function OCRGetRecognizedCharBottom( _
   ByVal iCharIndex As Integer
) as Integer

 

Parameter

iCharIndex
   the index of characters. The first index is 1.


Return Value
    The bottom position in pixel of one of the characters

Example

   

Visual Basic Syntax
ImageViewer1.OCRRecognizeMode=0
ImageViewer1.OCRStartScan(0, "dictfiles")

'after OCRRecognized event fired
ibottompos= ImageViewer1.OCRGetRecognizedCharBottom 1