WIDTH X, Y, Console_Width, Console_Height
The X sets your maximum number of visible columns.
The Y sets your maximum number of visible rows.
The Console_Width sets the width of your console screen.
The Console_Height sets the height of your console screen.
WIDTH 30, 30 will give you a 30x30 console screen.
WIDTH 30, 30, 60, 60 will give you a 30x30 display, but a 60x60 console which you can scroll left/right, up/down to view various portions of.
The last 2 parameters are windows only, and console only, but they allow you to set the max buffer for the console to interact with your scrollbars.
WIDTH 30, 30, 60, 60 gives you a 60x60 area to print to, with a 30x30 screen visible.
WIDTH 30, 30, 90, 90 gives you a 90x90 area to print to, with a 30x30 screen visible.
Edit: This is all from memory, so I may have my numbers inverted. The first x,y might be console and second buffer, or vice-versa... My brain can’t sort out which actually sets the active display and which is the scroll bars, at the moment. :P