Reflection .NET API
Attachmate.Reflection.Emulation.IbmHosts Assembly / Attachmate.Reflection.Emulation.IbmHosts Namespace / IIbmScreen Interface / WaitForCursor Method / WaitForCursor(Int32,Int32,Int32) Method
Wait timeout value (milliseconds).
Screen row position.
Screen column position.


WaitForCursor(Int32,Int32,Int32) Method
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 IIbmScreen
Dim timeout As Integer
Dim row As Integer
Dim column As Integer
Dim value As ReturnCode
 
value = instance.WaitForCursor(timeout, row, column)

Parameters

timeout
Wait timeout value (milliseconds).
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