|
Console Screen Buffers
A screen buffer is a two-dimensional array of character and color data for output in a
console window. A console can have multiple screen buffers. The active screen buffer is the one that is displayed on the screen.
The system creates a screen buffer whenever it creates a new console. A
process can use the CreateConsoleScreenBuffer function to create additional screen buffers for its console. A new screen
buffer is not active until its handle is specified in a call to the SetConsoleActiveScreenBuffer function. However, screen buffers can be accessed for reading and writing
whether they are active or inactive.
Each screen buffer has its own two-dimensional array of character information
records. The data for each character is stored in a CHAR_INFO structure that specifies the Unicode or ANSI character and the foreground and
background colors in which that character is displayed.
A number of properties associated with a screen buffer can be set
independently for each screen buffer. This means that changing the active screen buffer can
have a dramatic effect on the appearance of the console window. The properties
associated with a screen buffer include:
- Screen buffer size, in character rows and columns.
- Text attributes (foreground and background colors for displaying text to be
written by the WriteFile or WriteConsole function).
- Window size and location (the rectangular region of the screen buffer that is
displayed in the console window).
- Cursor position, appearance, and visibility.
- Output modes (ENABLE_PROCESSED_OUTPUT and ENABLE_WRAP_AT_EOL_OUTPUT). For more
information about console output modes, see High-Level Console Modes.
When a screen buffer is created, it contains blanks. Its cursor is visible and
positioned at the buffer's origin (0,0), and the window is positioned with its
upper left corner at the buffer's origin. The size of the screen buffer, the
window size, the text attributes, and the appearance of the cursor are
determined by the user or by the system defaults. To retrieve the current values of the
various properties associated with the screen buffer, use the GetConsoleScreenBufferInfo, GetConsoleCursorInfo, and GetConsoleMode functions.
Applications that change any of the screen buffer properties should either
create their own screen buffer or save the state of the inherited screen buffer
during startup and restore it at exit.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|