I have seen posts on changing console true type font, console colors (rgb) but nothing on setting or getting the console font size. edit: reason = grid is output to console, grid has many columns, fits better in smaller font, wondering if possible to change at runtime rather than allowing default or configured fonts to take priority / override inheritance.
C# – possible to get/set console font size in c# .net
.netc++consoleinterop
Related Question
- C# – How to get the application’s path in a .NET console application
- C# – How to get the current username in .NET using C#
- C# – How to get the computer name in .NET
- C# – How to get the color from a hexadecimal color code using .NET
- C# – Is it possible to write to the console in colour in .NET
- C# – the { get; set; } syntax in C#
- Google-chrome – Increase font size chrome console
- Node.js – How to change node.js’s console font color
Best Solution
Maybe this article can help you
ConsoleHelper.cs
Here is how to use it to list true type fonts for console,
Crucial functions:
SetConsoleFont
,GetConsoleFontInfo
andGetNumberOfConsoleFonts
. They're undocumented, so use at your own risk.