InfoConnect for Airlines VBA Guide
SearchText2 Function (UtsScreen)
Text to be searched on the screen.
Row position from which to start search.
Column position from which to start search.
Text range of byte positions.
Specifies the direction in which text is searched.
Searches the specified text starting from the specified screen location for "searchRange" byte positions.
Syntax
object.SearchText2( _
   ByVal text As String, _
   ByVal startRow As Long, _
   ByVal startColumn As Long, _
   ByVal searchRange As Long, _
   ByVal findOption As FindOption _
) As _ScreenPoint

Parameters

text
Text to be searched on the screen.
startRow
Row position from which to start search.
startColumn
Column position from which to start search.
searchRange
Text range of byte positions.
findOption
Specifies the direction in which text is searched.

Return Value

Screen point object.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException Thrown if the startRow or startColumn parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
See Also