[DllImport("kernel32.dll", SetLastError=true)]
static extern int SetConsoleFont(IntPtr hOut, uint dwFontSize);
Declare Function SetConsoleFont Lib "kernel32.dll" (hOut As IntPtr, dwFontSize As UInt32) As Integer
None.
Do you know one? Please contribute it!
Changes the font size of console. Undocumented function.
Please add some!
[DllImport("kernel32.dll", SetLastError = true)]
static extern int SetConsoleFont( // Функция не документирована
IntPtr hOut, // handle полученны от GetStdHandle
uint dwFontNum // Значение должно быть от 0 до 9
);
[DllImport("kernel32.dll", SetLastError = true)]
static extern IntPtr GetStdHandle(int dwType);
Console.WriteLine("This is an error!");
Console.ReadLine();
SetConsoleFont(GetStdHandle(STD_OUT_HANDLE), 9);
Console.ReadLine();