Text Viewer ActiveX Control

FindPrev

 

Continues a reverse search the text.

Public Function FindPrev(
     ByVal text As String
) as Bool

 

 Parameter
text - the string of the text

Return Value
true - successful
false - failed

Example

   

VB.NET Syntax
 If Not Me.AxTextReaderAx1.FindPrev("your text") Then
MessageBox.Show("No text found")
End If


   

Visual Basic Syntax
 If Not TextReaderAx1.FindPrev("your text") Then
MsgBox("No text found")
End If