- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for cursorDown (0.05 sec)
-
compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java
return y > 0 ? appendEscapeSequence('A', y) : y < 0 ? cursorDown(-y) : this; } /** * Moves the cursor down. If the parameter y is negative it moves the cursor up. * * @param y the number of lines to move down * @return this Ansi instance */ public Ansi cursorDown(final int y) { return y > 0 ? appendEscapeSequence('B', y) : y < 0 ? cursorUp(-y) : this;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 23.1K bytes - Viewed (0)