Enum TerminalModes
Specifies the initial assignments of the opcode values that are used in the 'encoded terminal modes' value.
public enum TerminalModes : byte
Fields
CS7 = 907 bit mode.
CS8 = 918 bit mode.
ECHO = 53Enable echoing.
ECHOCTL = 60Echo control characters as ^(Char).
ECHOE = 54Visually erase chars.
ECHOK = 55Kill character discards current line.
ECHOKE = 61Visual erase for line kill.
ECHONL = 56Echo NL even if ECHO is off.
ICANON = 51Canonicalize input lines.
ICRNL = 36Map CR to NL on input.
IEXTEN = 59Enable extensions.
IGNCR = 35Ignore CR on input.
IGNPAR = 30The ignore parity flag. The parameter SHOULD be 0 if this flag is FALSE, and 1 if it is TRUE.
IMAXBEL = 41Ring bell on input queue full.
INLCR = 34Map NL into CR on input.
INPCK = 32Enable checking of parity errors.
ISIG = 50Enable signals INTR, QUIT, [D]SUSP.
ISTRIP = 33Strip 8th bit off characters.
IUCLC = 37Translate uppercase characters to lowercase.
IUTF8 = 42Terminal input and output is assumed to be encoded in UTF-8.
IXANY = 39Any char will restart after stop.
IXOFF = 40Enable input flow control.
IXON = 38Enable output flow control.
NOFLSH = 57Don't flush after interrupt.
OCRNL = 73Translate carriage return to newline (output).
OLCUC = 71Convert lowercase to uppercase.
ONLCR = 72Map NL to CR-NL.
ONLRET = 75Newline performs a carriage return (output).
ONOCR = 74Translate newline to carriage return-newline (output).
OPOST = 70Enable output processing.
PARENB = 92Parity enable.
PARMRK = 31Mark parity and framing errors.
PARODD = 93Odd parity, else even.
PENDIN = 62Retype pending input.
TOSTOP = 58Stop background jobs from output.
TTY_OP_END = 0Indicates end of options.
TTY_OP_ISPEED = 128Specifies the input baud rate in bits per second.
TTY_OP_OSPEED = 129Specifies the output baud rate in bits per second.
VDISCARD = 18Toggles the flushing of terminal output.
VDSUSP = 11Another suspend character.
VEOF = 5End-of-file character (sends EOF from the terminal).
VEOL = 6End-of-line character in addition to carriage return and/or linefeed.
VEOL2 = 7Additional end-of-line character.
VERASE = 3Erase the character to left of the cursor.
VFLUSH = 15Character to flush output.
VINTR = 1Interrupt character; 255 if none. Similarly for the other characters. Not all of these characters are supported on all systems.
VKILL = 4Kill the current input line.
VLNEXT = 14Enter the next character typed literally, even if it is a special character.
VQUIT = 2The quit character (sends SIGQUIT signal on POSIX systems).
VREPRINT = 12Reprints the current input line.
VSTART = 8Continues paused output (normally control-Q).
VSTATUS = 17Prints system status line (load, command, pid, etc).
VSTOP = 9Pauses output (normally control-S).
VSUSP = 10Suspends the current program.
VSWTCH = 16Switch to a different shell layer.
VWERASE = 13Erases a word left of cursor.
XCASE = 52Enable input and output of uppercase characters by preceding their lowercase equivalents with "".