Enumeration Cursor

ANSI escape sequences for cursor movement and screen manipulation.

Enumeration Members

Column: "\u001b[1G"
Down: "\u001b[1B"
EraseLine: "\u001b[2K"
EraseLineFromCursor: "\u001b[0K"
EraseLineToCursor: "\u001b[1K"
EraseScreen: "\u001b[2J"
HideCursor: "\u001b[?25l"
Left: "\u001b[1D"
NextLine: "\u001b[1E"
Position: "\u001b[1;1H"
PreviousLine: "\u001b[1F"
RestoreCursorPosition: "\u001b[u"
Right: "\u001b[1C"
SaveCursorPosition: "\u001b[s"
ScrollDown: "\u001b[1T"
ScrollUp: "\u001b[1S"
ShowCursor: "\u001b[?25h"
Up: "\u001b[1A"

Generated using TypeDoc