0 votes
by (8.4k points)
edited

How to add Wyse 60 emulation capabilities to my terminal?

1 Answer

0 votes
by (8.4k points)
edited
 
Best answer

Experimental support for Wyse 60 emulation was added in build 3723.

To enable Wyse 60 emulation capabilities set the Options.TerminalType property of your TerminalControl or VirtualTerminal object to the TerminalType.Wyse60 value. Also setting the Options.FunctionKeysMode property to the FunctionKeysMode.Wyse60 value is probably needed (depending on the configuration of the remote end).

Please see the following sample code:

// switch to Wyse 60 mode first
terminalControl.Options.TerminalType = TerminalType.Wyse60;
terminalControl.Options.FunctionKeysMode = FunctionKeysMode.Wyse60;

// then bind the TerminalControl (for example) to a telnet client
Telnet client = new Telnet(hostname);
terminalControl.Bind(client);
...