CursorManagement extension
Cursor-management methods added to Renderer.
- on
Methods
-
hideCursor(
) → void -
Available on Renderer, provided by the CursorManagement extension
Hides the cursor by setting it invisible at position (0, 0). -
setCursorColor(
Color color) → void -
Available on Renderer, provided by the CursorManagement extension
Sets the terminal cursor color. -
setCursorPosition(
int x, int y, {bool visible = true}) → void -
Available on Renderer, provided by the CursorManagement extension
Set cursor position and visibility. -
setCursorStyle(
CursorStyle style, {bool blinking = false}) → void -
Available on Renderer, provided by the CursorManagement extension
Sets the cursorstyleand whether it blinks. -
showCursor(
int x, int y) → void -
Available on Renderer, provided by the CursorManagement extension
Shows the cursor at the given (x, y) position.