Example

The following is an example of using the SetCursorPos method.

--
// ECLPS::SetCursorPos
//
// Set host cursor to row 2 column 1.
//-------------------------------------------------------------------
void Sample61() {
 
ECLPS PS('A');          // PS object for connection A
 
PS.SetCursorPos(2, 1);  // Put cursor at row 2, column 1
printf("Cursor of connection A set to row 2 column 1.\n");
 
} // end sample
 
/