HorizontalAbsolute moves the cursor to n horizontally. The position n is absolute to the start of the line.
(n int)
| 52 | // HorizontalAbsolute moves the cursor to n horizontally. |
| 53 | // The position n is absolute to the start of the line. |
| 54 | func HorizontalAbsolute(n int) { |
| 55 | cursor.HorizontalAbsolute(n) |
| 56 | } |
| 57 | |
| 58 | // Show the cursor if it was hidden previously. |
| 59 | // Don't forget to show the cursor at least at the end of your application. |
searching dependent graphs…