SetConsoleScreenBufferSize
The SetConsoleScreenBufferSize
function changes the size of the specified console screen buffer.
BOOL SetConsoleScreenBufferSize(
HANDLE hConsoleOutput, |
// handle of
console screen buffer |
COORD dwSize |
// new size in
character rows and cols. |
); |
|
Parameters
hConsoleOutput
Identifies a
console screen buffer. The handle must have GENERIC_WRITE access.
dwSize
Specifies a COORD
Return Values
If the
function succeeds, the return value is nonzero.
If the
function fails, the return value is zero. To get extended error information,
call GetLastError
See Also