InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.UTS Library / UtsScreen Object / SearchText3 Method
Text to be searched on the screen.
Row position from which to start search.
Column position from which to start search.
Row position at which to end search.
Column position at which to end search.
Specifies the direction in which text is searched.
In This Topic
    SearchText3 Method (UtsScreen)
    In This Topic
    Searches the specified text, starting from the specified screen location and ending at the specified end screen location.
    Syntax
    expression.SearchText3( _
       ByVal text As String, _
       ByVal startRow As Integer, _
       ByVal startColumn As Integer, _
       ByVal endRow As Integer, _
       ByVal endColumn As Integer, _
       ByVal findOption As FindOption _
    ) As ScreenPoint object 
    where expression is a variable that represents a UtsScreen Object

    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.
    endRow
    Row position at which to end search.
    endColumn
    Column position at which to end search.
    findOption
    Specifies the direction in which text is searched.

    Return Value

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