WINDOW_BUFFER_SIZE_RECORD (Structures)
Last changed: korzey-62.5.172.34

.
Summary
A COORD structure that contains the size of the console screen buffer, in character cell columns and rows.

C# Definition:

struct WINDOW_BUFFER_SIZE_RECORD {
    public COORD dwSize;

    public WINDOW_BUFFER_SIZE_RECORD(short x, short y)
    {
        this.dwSize=new COORD(x,y);
    }
}

VB Definition:

Structure WINDOW_BUFFER_SIZE_RECORD
   Public TODO
End Structure

User-Defined Field Types:

Notes:

Buffer size events are placed in the input buffer when the console is in window-aware mode (ENABLE_WINDOW_INPUT).

Documentation