ScreenUPG
setCursorColumn Method
Example 



Sets the column of the cursor position.
Syntax
'Declaration
 
Public Sub setCursorColumn( _ 
   ByVal CursorColumn As Integer _ 
) 
'Usage
 
Dim instance As ScreenUPG 
Dim CursorColumn As Integer 
  
instance.setCursorColumn(CursorColumn)
public void setCursorColumn( 
   int CursorColumn 
)
public: 
void setCursorColumn( 
   int CursorColumn 
) 

Parameters

CursorColumn
Example
int cc = 17;
            
screen.setCursorColumn(cc);
Dim cc As Integer
            
'Set the cursor column
cc = 17
screen.setCursorColumn cc
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
setCursor Method
setCursorRow Method