InfoConnect API Guide
Attachmate.Reflection.Emulation.OpenSystems Namespace / IScreen Interface / SearchText Method / SearchText(String,Int32,Int32,Int32,FindOptions) Method
Text string to search for.
Start row for search.
Start column for search.
The number of character positions to search.
Specifies search direction.


In This Topic
SearchText(String,Int32,Int32,Int32,FindOptions) Method
In This Topic
Searches for the specified text, starting from the specified screen location for "searchRange" byte positions.
Syntax
'Declaration
 
Overloads Function SearchText( _
   ByVal text As String, _
   ByVal startRow As Integer, _
   ByVal startColumn As Integer, _
   ByVal searchRange As Integer, _
   ByVal findOption As FindOptions _
) As ScreenPoint
 
'Usage
 
Dim instance As IScreen
Dim text As String
Dim startRow As Integer
Dim startColumn As Integer
Dim searchRange As Integer
Dim findOption As FindOptions
Dim value As ScreenPoint
 
value = instance.SearchText(text, startRow, startColumn, searchRange, findOption)

Parameters

text
Text string to search for.
startRow
Start row for search.
startColumn
Start column for search.
searchRange
The number of character positions to search.
findOption
Specifies search direction.

Return Value

The coordinate of the located text or null if the text is not found.
See Also