InfoConnect for Unisys
WaitForCursor(Int32,Int32,Int32) Method


Wait timeout value.
Screen row position.
Screen column position.
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 IUtsScreen
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 sucess, failure, or a warning condition if the cursor position reaches the screen boundary.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException 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