Redimensionar la pantalla del Terminal

0
Cuando intento agrandar o empequeñecer la fuente del Terminal, se modifican automáticamente las filas y columnas de la pantalla (screen) del Terminal. Yo quiero que se me conserven las filas y columnas en 25 y 80 y hacer más grande o más pequeño el Terminal. Lo he intentado también con Scale, pero también me modifica las filas y columnas.
 
asked 8/5/2019 8:38:14 AM
add a comment

1 Answers

0
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
add a comment

Your Answer

Not the answer you're looking for? Browse other questions tagged ultimate terminal emulation or ask your own question.