InfoConnect API Guide
Attachmate.Reflection.Emulation.T27 Namespace / IT27Screen Interface / WaitForCursor Method / WaitForCursor(Int32,Int32,Int32) Method
Wait timeout value.
Screen row position.
Screen column position.


In This Topic
    WaitForCursor(Int32,Int32,Int32) Method
    In This Topic
    Waits for the cursor to be at the specified screen location.
    Syntax
    'Declaration
     
    
    Overloads Function WaitForCursor( _
       ByVal timeout As Integer, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As ReturnCode
    'Usage
     
    
    Dim instance As IT27Screen
    Dim timeout As Integer
    Dim row As Integer
    Dim column As Integer
    Dim value As ReturnCode
     
    value = instance.WaitForCursor(timeout, row, column)
    ReturnCode WaitForCursor( 
       int timeout,
       int row,
       int column
    )

    Parameters

    timeout
    Wait timeout value.
    row
    Screen row position.
    column
    Screen column position.

    Return Value

    ReturnCode indicates success, failure, or a warning condition if the cursor position reaches the screen boundary.
    Exceptions
    ExceptionDescription
    This exception is thrown if the row or column parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
    See Also