Scanner ActiveX Control

DrawText

 

Draw the text on scanned Image.

Public Function DrawText( _
   ByVal iXPos As Integer, _
   ByVal iYPos As Integer _
   ByVal strText As String
) 

 

Parameter

iXPos
   Specifies the logical x-coordinate of the starting point of the text.

iYPos
   Specifies the logical y-coordinate of the starting point of the text.

strText
   the string of the text. Add Carriage returns and line feeds it will break the line.

Return Value

No return value.


Example

   

Visual Basic Syntax
Scanner1.DrawText 0,100 ,"Line 1" + chr(13)+chr(10) +"Line 2"