2
Is there any way to get the size and location of the System.Console
in pixels, don’t tiers? I’ve tried this method:
'Para o tamanho:
Dim X, Y As Integer
X = Console.WindowWidth * 8
Y = Console.WindowHeigth * 12
Dim final As Size = New Size(X, Y)
'8x12 por que cada caractere tem 8 por 12 pixels.
But I think, what if the user has changed the console source? Thank you already.