We are not quite sure we understand the question. The terminal is designed for 80x25 console window. You can use the following code to set the cell size:
// determine the size of a single character cell
Size cellSize = terminal.CellSize;
terminal.CellSize = cellSize * 2;
// resize the terminal control to 80 character columns and 25 character rows
terminal.SetScreenSize(80, 25);
answered 8/5/2019 9:09:37 AM