ScreenUPG
setCursor Method
Example 



The row in which the cursor is placed.
The column in which the cursor is placed.
Sets the cursor position in the presentation space.
Syntax
'Declaration
 
Public Sub setCursor( _ 
   ByVal inRow As Integer, _ 
   ByVal inColumn As Integer _ 
) 
'Usage
 
Dim instance As ScreenUPG 
Dim inRow As Integer 
Dim inColumn As Integer 
  
instance.setCursor(inRow, inColumn)
public void setCursor( 
   int inRow,
   int inColumn 
)
public: 
void setCursor( 
   int inRow,
   int inColumn 
) 

Parameters

inRow
The row in which the cursor is placed.
inColumn
The column in which the cursor is placed.
Example
int row = 12;
int column = 17;
            
screen.setCursor(row, column);
Dim row As Integer
Dim column As Integer
            
row = 12
column = 17
screen.setCursor row, column
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ScreenUPG Class
ScreenUPG Members
getCursor Method
getCursorColumn Method
getCursorRow Method
setCursorColumn Method
setCursorRow Method