|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| wincon.h
| Unicode
| No
| Platform Notes
| None
|
|
|
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 structure containing the new size, in rows and columns, of the screen buffer.
The specified width and height cannot be less than the width and height of the
screen buffer's window. The specified dimensions also cannot be less than the
minimum size allowed by the system. This minimum depends on the current font
size for the console (selected by the user) and the SM_CXMIN and SM_CYMIN values
returned by the GetSystemMetrics function.
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
COORD, GetConsoleScreenBufferInfo, SetConsoleWindowInfo
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|