ChevCast
ChevCast

Reputation: 59213

Maximum columns for a Console in C#

In a C# console application I have discovered that you can use Console.SetWindowSize(160, 80); to set the size of the console window. This is great, except for the fact that the maximum number of rows and columns is entirely dependent on the display resolution of the person's computer.

When you call Console.SetWindowSize() and supply values that are too high the application throws an error and tells you what the maximum number of columns can be. This maximum number is different depending on your screen resolution. If SetWindowSize() used pixels then getting the max would be easy.

Screen.PrimaryScreen.Bounds.Width

However, it doesn't use pixels. It uses columns. Is there any way to determine this max value for the console columns?

Upvotes: 18

Views: 7440

Answers (1)

Petar Ivanov
Petar Ivanov

Reputation: 93030

Console.LargestWindowWidth
Console.LargestWindowHeight

Upvotes: 29

Related Questions