RequestedAction Enum
Namespace: Rebex.TerminalEmulation
Assembly: Rebex.Terminal.dll (version 7.0.9083)
Determines the client command requested by the server (ActionRequested event).
Syntax
public enum RequestedAction
Fields
Name | Description |
---|---|
DisconnectRequest | The server requests the client to disconnect. |
DoubleWidthDoubleHeightBottomLine | Set row style to double-width, double-height - bottom half (DECDHL). The row number is specified by Number. See https://vt100.net/docs/vt510-rm/DECDHL.html for details. |
DoubleWidthDoubleHeightTopLine | Set row style to double-width, single-height - top half (DECDHL). The row number is specified by Number. For details see https://vt100.net/docs/vt510-rm/DECDHL.html |
DoubleWidthSingleHeightLine | Set row style to double-width, single-line - whole line (DECDWL). The row number is specified by Number. See https://vt100.net/docs/vt510-rm/DECDWL.html for details. |
ExecuteCommand | Execute a command on the client side. The command is specified by Text. Additional number argument is specified by Number. |
IconName | Set the icon name. The name is specified by Text. |
InvertScreenColors | Invert colors on screen (DECSCNM - Screen Mode: Light or Dark Screen). The state is specified by Number (zero means reset, non-zero means set). See https://vt100.net/docs/vt510-rm/DECSCNM.html for details. |
KeyboardAutoRepeat | Auto Repeat Mode (DECARM). The state is specified by Number (zero means reset, non-zero means set). See https://vt100.net/docs/vt220-rm/chapter4.html#S4.6.15 for details. |
LocalEcho | Disable local echo (SRM). The state is specified by Number (zero means reset, non-zero means set).
If SRM is set, local echo should be disabled. |
NewLineMode | Set new line sequence (LNM). The state is specified by Number (zero means reset, non-zero means set).
If LNM is set, client should send CR LF on Enter. |
ResizeScreen | Resize client screen. Number of character columns of the resized terminal is specified by Number. Number of character rows of the resized terminal is specified by Number2. |
RingBell | Make a bell sound. |
SingleWidthSingleHeightLine | Set row style to single-width, single-height - whole line (DECSWL). The row number is specified by Number. See https://vt100.net/docs/vt510-rm/DECSWL.html for details. |
WindowTitle | Set the window title. The title is specified by Text. |