Method CSI_AppendCursorPosition
CSI_AppendCursorPosition(StringBuilder, int, int)
ESC [ y ; x H - CUP Cursor Position - Cursor moves to x ; y coordinate within the viewport, where x is the column of the y line
public static void CSI_AppendCursorPosition(StringBuilder builder, int row, int col)
Parameters
builder
StringBuilderStringBuilder where to append the cursor position sequence.
row
intOrigin is (1,1).
col
intOrigin is (1,1).