.
static extern int SetConsoleFont(IntPtr hOut, uint dwFontSize);
.
Declare Function SetConsoleFont Lib "kernel32.dll" (hOut As IntPtr, dwFontSize As UInt32) As Integer
.
static extern int SetConsoleFont(
.
SetConsoleFont(GetStdHandle(STD_OUT_HANDLE), 9);
.