AnsiSequences
ClassNamespace:
RazorConsole.Core.UtilitiesAssembly:
RazorConsole.CoreDefinition
public static class AnsiSequencesMethods
17| Name | Type | Description |
|---|---|---|
CPL(int)() | String | — |
CUB(int)() | String | This control function moves the cursor to the left by a specified number of columns. The cursor stops at the left border of the page. |
CUD(int)() | String | This control function moves the cursor down a specified number of lines in the same column. The cursor stops at the bottom margin. If the cursor is already below the bottom margin, then the cursor stops at the bottom line. |
CUF(int)() | String | This control function moves the cursor to the right by a specified number of columns. The cursor stops at the right border of the page. |
CUP(int, int)() | String | Moves the cursor to the specified position. |
CUU(int)() | String | Moves the cursor up a specified number of lines in the same column. The cursor stops at the top margin. If the cursor is already above the top margin, then the cursor stops at the top line. |
ED(int)() | String | This control function erases characters from part or all of the display. When you erase complete lines, they become single-height, single-width lines, with all visual character attributes cleared. ED works inside or outside the scrolling margins. |
EL(int)() | String | This control function erases characters on the line that has the cursor. EL clears all character attributes from erased character positions. EL works inside or outside the scrolling margins. |
IDN() | String | This control function moves the cursor down one line, scrolling the display if necessary. |
NEL() | String | This control function moves the cursor to the first column of the next line, scrolling if necessary. |
PP(int)() | String | — |
RI() | String | This control function moves the cursor up one line, scrolling the display if necessary. |
RM(int)() | String | Hides the cursor. |
SD(int)() | String | — |
SGR(params byte[])() | String | This control function selects one or more character attributes at the same time. |
SM(int)() | String | Shows the cursor. |
SU(int)() | String | — |