InfoConnect API Guide
Attachmate.Reflection.Emulation.T27 Namespace / IT27Screen Interface / MoveCursorTo Method / MoveCursorTo(Int32,Int32) Method
Row position to move the cursor to.
Column position to move the cursor to.


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

    Parameters

    row
    Row position to move the cursor to.
    column
    Column position to move the cursor to.

    Return Value

    ReturnCode indicates success, failure, or a warning condition if the cursor position reaches the screen boundary.
    Remarks
    If either row or column is out of screen bounds, the method moves the cursor but within the screen's dimensions.
    See Also