IAnsiConsoleCursor Interface

Represents the console's cursor.
public interface IAnsiConsoleCursor
Namespace
Spectre.Console

Methods

abstract void Move(CursorDirection, int)
Moves the cursor relative to the current position.
abstract void SetPosition(int, int)
Sets the cursor position.
abstract void Show(bool)
Shows or hides the cursor.

Extension Methods

void Hide()
Hides the cursor.
void MoveDown(int)
Moves the cursor down.
void MoveDown()
Moves the cursor down.
void MoveLeft(int)
Moves the cursor to the left.
void MoveLeft()
Moves the cursor to the left.
void MoveRight(int)
Moves the cursor to the right.
void MoveRight()
Moves the cursor to the right.
void MoveUp(int)
Moves the cursor up.
void MoveUp()
Moves the cursor up.
void Show()
Shows the cursor.