moveTo static method

void moveTo(
  1. int x,
  2. int y
)

Moves the cursor to the specific position (x, y). Indices start at 1, not 0.

Implementation

static void moveTo(int x, int y) {
  instance.moveTo(x, y);
}