Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for cursorMove (0.06 seconds)

  1. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         *
         * @param x the number of characters to move horizontally
         * @param y the number of lines to move vertically
         * @return this Ansi instance
         * @since 2.2
         */
        public Ansi cursorMove(final int x, final int y) {
            return cursorRight(x).cursorDown(y);
        }
    
        /**
         * Moves the cursor to the beginning of the line below.
         *
         * @return this Ansi instance
         */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 23.1K bytes
    - Click Count (0)
Back to Top