Reflection .NET API
Attachmate.Reflection.Emulation.OpenSystems Assembly / Attachmate.Reflection.Emulation.OpenSystems Namespace / IScreen Interface / MoveCursorTo Method
Row position to move the cursor to.
Column position to move the cursor to.


In This Topic
    MoveCursorTo Method (IScreen)
    In This Topic
    Moves the cursor to the specified screen location.
    Syntax
    'Declaration
     
    
    Sub MoveCursorTo( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) 
    'Usage
     
    
    Dim instance As IScreen
    Dim row As Integer
    Dim column As Integer
     
    instance.MoveCursorTo(row, column)
    void MoveCursorTo( 
       int row,
       int column
    )

    Parameters

    row
    Row position to move the cursor to.
    column
    Column position to move the cursor to.
    Remarks
    If either row or column is out of screen bounds, the method will not move the cursor.
    See Also