0 votes
by (180 points)

Good day.
I checked your sample TerminalClientWinform_CS for changing the font style in a terminal control but found it impossible. Is it solution to change font style? I need bold font as default for terminal.
Thank you

1 Answer

0 votes
by (70.2k points)

What you mean by setting bold font by default?

You can use this:

var fi = new TerminalFontInfo() { Bold = true };
terminal.TerminalFont = new TerminalFont(fi);

But this will use bold font always = all characters on terminal will be in bold font.

...